diff options
Diffstat (limited to 'host/RoryNix/configuration.nix')
-rw-r--r-- | host/RoryNix/configuration.nix | 57 |
1 files changed, 30 insertions, 27 deletions
diff --git a/host/RoryNix/configuration.nix b/host/RoryNix/configuration.nix index 3618ca7..f5c63fd 100644 --- a/host/RoryNix/configuration.nix +++ b/host/RoryNix/configuration.nix @@ -1,24 +1,28 @@ -{ config, pkgs, lib, ... }: +{ + config, + pkgs, + lib, + ... +}: { - imports = - [ -# ./hardware-configuration.nix - ../../modules/packages/vim.nix - ../../modules/environments/home.nix -# ../../modules/packages/overlays/haskell/basement/IntWord64.nix - ]; + imports = [ + # ./hardware-configuration.nix + ../../modules/packages/vim.nix + ../../modules/environments/home.nix + # ../../modules/packages/overlays/haskell/basement/IntWord64.nix + ]; - boot = { - kernelPackages = pkgs.linuxPackages_latest; - loader = { - grub = { - enable = true; - device = "/dev/sda"; # nodev for EFI only - # EFI - efiSupport = false; - efiInstallAsRemovable = false; - }; + boot = { + kernelPackages = pkgs.linuxPackages_latest; + loader = { + grub = { + enable = true; + device = "/dev/sda"; # nodev for EFI only + # EFI + efiSupport = false; + efiInstallAsRemovable = false; + }; }; #readOnlyNixStore = false; }; @@ -68,8 +72,8 @@ enable = true; extraConfig = '' MaxAuthTries 32 - ''; - }; + ''; + }; pipewire = { enable = true; audio.enable = true; @@ -141,14 +145,15 @@ zsh-you-should-use zsh-syntax-highlighting zsh-completions - - ]; - fonts.packages = with pkgs; [ - (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) + ]; + fonts.packages = with pkgs; [ (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) ]; nix = { settings = { - experimental-features = [ "nix-command" "flakes" ]; + experimental-features = [ + "nix-command" + "flakes" + ]; auto-optimise-store = true; }; }; @@ -160,7 +165,5 @@ sudo.wheelNeedsPassword = false; }; - system.stateVersion = "22.11"; # DO NOT EDIT! } - |