Renamed home to programs, moved definition to user level

This commit is contained in:
2025-09-22 23:35:57 +02:00
parent d3266d1c1d
commit 03aebab782
88 changed files with 236 additions and 731 deletions

31
programs/wm/default.nix Normal file
View File

@@ -0,0 +1,31 @@
{ pkgs, ... }:
{
imports = [
./common/kitty.nix
./common/waybar
./common/cava.nix
./common/rofi
./xdg.nix
./common/neovim
./common/audio.nix
];
gtk = {
enable = true;
theme = {
package = pkgs.flat-remix-gtk;
name = "Flat-Remix-GTK-Grey-Darkest";
};
iconTheme = {
package = pkgs.adwaita-icon-theme;
name = "Adwaita";
};
font = {
name = "Sans";
size = 12;
};
};
}