i heard you liked modules so i

put modules in you
r modules so you can mo
dule while you mod
ule
This commit is contained in:
marty 2025-12-21 14:21:07 +01:00
parent 2d08836672
commit 8bac46929b
13 changed files with 274 additions and 83 deletions

View file

@ -0,0 +1,30 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
config = lib.mkIf config.device.type.laptop {
home.packages = with pkgs; [
light
];
development = lib.mkDefault {
vscodium.enable = true;
};
terminal = lib.mkDefault {
kitty.enable = true;
};
desktop = lib.mkDefault {
hyprland = {
enable = true;
};
waybar.enable = true;
walker.enable = true;
wallpaper.enable = true;
grimblast.enable = true;
};
};
}