all repos — archive/nixos-configuration @ a9aea15a7f3dfd93fa17b41bc1492b3010bd5dcb

Superseded by nixfiles

Setup prefect machine

Alan Pearce
commit

a9aea15a7f3dfd93fa17b41bc1492b3010bd5dcb

parent

c7946cd972c5d06e4d3c2912cf6ec7ca18c68327

1 file changed, 17 insertions(+), 4 deletions(-)

jump to
M prefect.nixprefect.nix
@@ -3,6 +3,7 @@
{ imports = [ ./hardware-configuration.nix + ./modules/base.nix ./modules/configuration/berlin.nix ./modules/configuration/british-english.nix ./modules/configuration/nix.nix
@@ -10,27 +11,39 @@ ./modules/configuration/user.nix
./modules/development/base.nix ./modules/development/javascript.nix ./modules/development/lisp.nix - ./modules/hardware/adb.nix ./modules/hardware/audio.nix ./modules/hardware/bare-metal.nix - ./modules/user-interface.nix - ./modules/hardware/nitrokey.nix ./modules/hardware/mouse.nix ./modules/hardware/systemd-boot.nix ./modules/hardware/nvidia-gpu.nix + ./modules/hardware/trezor.nix + ./modules/services/zeroconf.nix + ./modules/user-interface.nix ./modules/programs/accounting.nix ./modules/programs/dotfiles.nix + ./modules/programs/gnupg.nix + ./modules/programs/keybase.nix ./modules/programs/i3.nix ./modules/programs/infrastructure.nix ./modules/programs/passwords.nix ./modules/programs/shell.nix + ./modules/gaming.nix + ./modules/programs/tor.nix + ./modules/programs/barrier.nix ./modules/services/syncthing.nix ]; + boot.loader.efi.canTouchEfiVariables = pkgs.lib.mkForce false; + services.xserver.screenSection = '' + Option "MetaModes" "2560x1440_120" + ''; + services.xserver.xautolock.enable = pkgs.lib.mkForce false; + powerManagement.enable = false; + # powerManagement.cpuFreqGovernor = "performance"; networking = { hostName = "prefect"; domain = "alanpearce.eu"; }; - system.stateVersion = "17.09"; + system.stateVersion = "19.03"; }