feat: full refactoring - work in progress...

This commit is contained in:
Xavier Morel
2025-07-23 16:49:52 +02:00
parent 66f7edf9a3
commit 85fdab6375
38 changed files with 726 additions and 774 deletions

View 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
];
};
}