24 lines
506 B
Nix
24 lines
506 B
Nix
{
|
|
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
|
|
'';
|
|
};
|
|
};
|
|
}
|