feat: full refactoring - work in progress...
This commit is contained in:
20
modules/home-manager/bundles/desktop-apps.nix
Normal file
20
modules/home-manager/bundles/desktop-apps.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.myHome.bundle.desktop-apps.enable = lib.mkEnableOption "enable desktop-apps bundle";
|
||||
config = lib.mkIf config.myHome.bundle.desktop-apps.enable {
|
||||
myHome.programs.kitty.enable = true;
|
||||
home.packages = map lib.lowPrio [
|
||||
pkgs.bottles
|
||||
pkgs.ungoogled-chromium
|
||||
pkgs.xfce.thunar
|
||||
pkgs.xfce.thunar-archive-plugin
|
||||
pkgs.xfce.thunar-volman
|
||||
pkgs.vial
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user