Compare commits

..

No commits in common. "248b962d5ef584fcb2003656d37b376d93907984" and "01c41964bfb4f3868d7c616edc82fd226e571ed0" have entirely different histories.

14 changed files with 1 additions and 17 deletions

2
.gitignore vendored
View File

@ -2,5 +2,3 @@
*.qcow2 *.qcow2
config/hardware-configuration.nix config/hardware-configuration.nix
temp/* temp/*
.claude
hardware-configuration.nix

View File

Before

Width:  |  Height:  |  Size: 968 KiB

After

Width:  |  Height:  |  Size: 968 KiB

View File

@ -4,11 +4,11 @@
imports = [ imports = [
# Include the results of the hardware scan. # Include the results of the hardware scan.
./hardware-configuration.nix ./hardware-configuration.nix
./cesium.nix
./common.nix ./common.nix
./mounts.nix ./mounts.nix
./services.nix ./services.nix
./users/sebastian.nix ./users/sebastian.nix
# ./vm-guest.nix
<home-manager/nixos> <home-manager/nixos>
]; ];

View File

@ -1,14 +0,0 @@
{ config, ... }:
{
hardware.nvidia = {
modesetting.enable = true;
open = false;
};
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl = {
enable = true;
};
}