before flake update

This commit is contained in:
2025-09-16 17:48:12 +02:00
parent 4f2863e03e
commit 72287ae6c2
4 changed files with 24 additions and 26 deletions

View File

@@ -16,21 +16,20 @@
};
};
};
environment.systemPackages = with pkgs; [
numlockx
adwaita-icon-theme
xclip
flameshot
environment.systemPackages = [
pkgs.numlockx
pkgs.adwaita-icon-theme
pkgs.xclip
pkgs.flameshot
];
environment.etc = {
"X11/xinit/xinitrc".source = ./config/xinitrc;
};
imports =
[
./i3
./polybar
]
++ lib.optionals args.isGpu [
./picom
];
imports = [
./i3
./polybar
]
++ lib.optionals args.isGpu [
./picom
];
}