Compare commits

..

3 Commits

Author SHA1 Message Date
Sebastian Fischer
248b962d5e [TASK] Add ignores 2026-03-07 09:20:10 +01:00
Sebastian Fischer
5a2c51b9dc [TASK] Add settings for cesium only 2026-03-07 09:19:37 +01:00
Sebastian Fischer
cb579d7097 [TASK] Rename folder 2026-03-07 09:19:25 +01:00
14 changed files with 17 additions and 1 deletions

2
.gitignore vendored
View File

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

14
nixos/cesium.nix Normal file
View File

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

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>
]; ];