Anthony Rodriguez
b808281674
Started moving HM config to the new local modules system. Conditionally toggling based on profiles and modules.
20 lines
326 B
Nix
20 lines
326 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
osConfig,
|
|
...
|
|
}: {
|
|
imports = [./zathura.nix];
|
|
|
|
config = lib.mkIf osConfig.local.profiles.desktop.enable {
|
|
programs.mpv.enable = true;
|
|
home.packages = [
|
|
pkgs.gnome-calculator
|
|
pkgs.gthumb
|
|
pkgs.spotify
|
|
pkgs.stremio
|
|
pkgs.tidal-hifi
|
|
pkgs.celluloid
|
|
];
|
|
};
|
|
}
|