move more apps and separate unfree

This commit is contained in:
Noah Masur
2022-04-28 22:43:50 -04:00
parent c89df227e6
commit c797f5ab65
9 changed files with 50 additions and 35 deletions

View File

@ -0,0 +1,9 @@
{ pkgs, lib, gui, user, ... }: {
config = lib.mkIf gui {
nixpkgs.config.allowUnfree = true;
home-manager.users.${user} = {
home.packages = with pkgs; [ _1password-gui ];
};
};
}

View File

@ -0,0 +1,9 @@
{ pkgs, lib, user, gui, ... }: {
config = lib.mkIf gui {
home-manager.users.${user} = {
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [ discord ];
};
};
}

View File

@ -0,0 +1,11 @@
{ pkgs, lib, gui, user, ... }: {
config = lib.mkIf gui {
home-manager.users.${user}.home.packages = with pkgs; [
mpv # Video viewer
sxiv # Image viewer
zathura # PDF viewer
];
};
}