Compare commits

...

2 Commits

Author SHA1 Message Date
244e005e95
Fix indentation 2023-12-30 10:09:52 -05:00
484e89aa9f
Add debugging role 2023-12-30 10:08:23 -05:00
2 changed files with 11 additions and 2 deletions

View File

@ -18,7 +18,7 @@
./hosts/slab/nvidia-optimus.nix
./roles/remote.nix
./roles/desktop.nix
./fragments/opengl.nix
./fragments/opengl.nix
];
};
nullbox = lib.nixosSystem {
@ -27,7 +27,7 @@
./hosts/nullbox/configuration.nix
./roles/remote.nix
./roles/desktop.nix
./fragments/hardware/nvidia-modeset.nix
./fragments/hardware/nvidia-modeset.nix
];
};
};

9
roles/debugging.nix Normal file
View File

@ -0,0 +1,9 @@
{ config, lib, pkgs, ...}:
{
environment = {
enableDebugInfo = true;
systemPackages = with pkgs; [
gdb
];
};
}