diff options
author | sefidel <contact@sefidel.net> | 2023-02-14 23:36:38 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-02-14 23:38:29 +0900 |
commit | 748adbac7ca3452d0a1250c37ff4168d6ccf5ae0 (patch) | |
tree | 7be36fd9da46399b3a98bc1b3e9309bd3ce64fb3 /nixos/kompakt/hardware-configuration.nix | |
parent | adf6baa00e038e49cf477160eeddc886efced2b4 (diff) | |
download | nixrc-748adbac7ca3452d0a1250c37ff4168d6ccf5ae0.tar.gz nixrc-748adbac7ca3452d0a1250c37ff4168d6ccf5ae0.zip |
feat(nixos): init kompakt
Diffstat (limited to 'nixos/kompakt/hardware-configuration.nix')
-rw-r--r-- | nixos/kompakt/hardware-configuration.nix | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/nixos/kompakt/hardware-configuration.nix b/nixos/kompakt/hardware-configuration.nix new file mode 100644 index 0000000..27c7ad8 --- /dev/null +++ b/nixos/kompakt/hardware-configuration.nix @@ -0,0 +1,54 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ config, lib, pkgs, modulesPath, ... }: + +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") + ]; + + boot.initrd.availableKernelModules = [ "usb_storage" ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "rpool/local/root"; + fsType = "zfs"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/01AC-1BF6"; + fsType = "vfat"; + }; + + fileSystems."/nix" = + { device = "rpool/local/nix"; + fsType = "zfs"; + }; + + fileSystems."/persist" = + { device = "rpool/safe/persist"; + fsType = "zfs"; + }; + + fileSystems."/home" = + { device = "rpool/safe/home"; + fsType = "zfs"; + }; + + swapDevices = [ ]; + + # Enables DHCP on each ethernet and wireless interface. In case of scripted networking + # (the default) this is the recommended approach. When using systemd-networkd it's + # still possible to use this option, but it's recommended to use it in conjunction + # with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`. + networking.useDHCP = lib.mkDefault true; + # networking.interfaces.wlp1s0f0.useDHCP = lib.mkDefault true; + + nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; + powerManagement.cpuFreqGovernor = lib.mkDefault "ondemand"; + # high-resolution display + hardware.video.hidpi.enable = lib.mkDefault true; +} |