summaryrefslogtreecommitdiff
path: root/nix/modules/xserver.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-01 23:51:02 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-01 23:51:02 -0800
commita05e0614c1bb75f77717a943dc4ac75a0cca4652 (patch)
treed52ddee9db6d6eabbafc73f04aa83f6bbcd7f0c5 /nix/modules/xserver.nix
parent75439737613d86975856c4bff0a1257f58fd1b1f (diff)
add everything; add CI
Diffstat (limited to 'nix/modules/xserver.nix')
-rw-r--r--nix/modules/xserver.nix24
1 files changed, 12 insertions, 12 deletions
diff --git a/nix/modules/xserver.nix b/nix/modules/xserver.nix
index 7bc40af..e3e0d9d 100644
--- a/nix/modules/xserver.nix
+++ b/nix/modules/xserver.nix
@@ -6,22 +6,22 @@
startx.enable = (! config.monorepo.profiles.ttyonly.enable);
};
- windowManager = {
- i3 = {
- enable = (! config.monorepo.profiles.ttyonly.enable);
- };
- };
+ # windowManager = {
+ # i3 = {
+ # enable = (! config.monorepo.profiles.ttyonly.enable);
+ # };
+ # };
desktopManager = {
- runXdgAutostartIfNone = true;
+ runXdgAutostartIfNone = true;
};
- xkb = {
- layout = "us";
- variant = "";
- options = "caps:escape";
- };
+ # xkb = {
+ # layout = "us";
+ # variant = "";
+ # options = "caps:escape";
+ # };
- videoDrivers = (if config.monorepo.profiles.cuda.enable then [ "nvidia" ] else []);
+ videoDrivers = (if config.monorepo.profiles.cuda.enable then [ "nvidia" ] else [ ]);
};
}