❄️ Dotfiles for our NixOS system configuration.
1{ 2 imports = [ 3 ./hardware.nix 4 ]; 5 6 settings = { 7 desktop = { 8 kde.enable = true; 9 }; 10 11 hardware = { 12 audio.enable = true; 13 nvidia.enable = true; 14 }; 15 16 profiles = { 17 graphical.enable = true; 18 laptop.enable = true; 19 }; 20 21 software = { 22 solaar.enable = true; 23 }; 24 25 virtualization = { 26 waydroid.enable = true; 27 }; 28 }; 29 30 system.stateVersion = "23.11"; # Initial NixOS version 31}