Re-migrate to i3 (x11)

This commit is contained in:
2024-06-19 11:44:36 +02:00
parent 98ac550582
commit 294e40987c
6 changed files with 45 additions and 32 deletions

View File

@ -31,14 +31,22 @@ in
};
config = mkIf cfg.enable {
modules.rofi.enable = true;
services.dunst.enable = true;
programs = {
i3status-rust = {
enable = true;
};
};
home.packages = with pkgs; [ nitrogen ];
home.packages = with pkgs; [
nitrogen
xfce.xfce4-screenshooter
];
xsession.windowManager.i3 = {
enable = true;
package = pkgs.i3-gaps;
};
# Overwrite default home-manager config file
@ -55,8 +63,9 @@ in
".config/i3status-rust/config.toml".source = ./i3status-rust/config.toml;
};
home.file = {
".profile".source = ./.profile;
};
home.sessionPath = [ "/home/julian/.config/i3/scripts" ];
# home.file = {
# ".profile".source = ./.profile;
# };
};
}