First commit

This commit is contained in:
2025-07-22 02:30:15 +02:00
commit e9441f563b
66 changed files with 4401 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{
pkgs,
...
}@attrs:
{
environment.systemPackages = [
pkgs.i3
pkgs.i3lock
pkgs.i3-volume
pkgs.i3-gaps
pkgs.rofi
];
environment.etc = {
"xdg/i3/config".source = ./config/config;
"xdg/i3/colors".source = ./config/colors;
"xdg/i3/screen".source = ./config/screen-${attrs.hostname};
"xdg/i3/rofi" = {
text = ''
bindsym $mod+d exec --no-startup-id ${pkgs.rofi}/bin/rofi -show drun -show-icons -config /etc/xdg/rofi/config.rasi
'';
};
};
}