Compare commits

..

No commits in common. "244e005e9579930cc71a658bf6dd024866183ba3" and "2561688c0443b97b760a79f97a975e4d60bf8b30" have entirely different histories.

2 changed files with 2 additions and 11 deletions

View File

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

View File

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