From 1f327873451b9617e305b4b97f83a1824574881d Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Fri, 29 Sep 2023 20:38:26 -0400 Subject: add laptop host --- hosts/jontop/default.nix | 32 ++++++++++++++++++++++++++++++++ hosts/jontop/hardware.nix | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 hosts/jontop/default.nix create mode 100644 hosts/jontop/hardware.nix (limited to 'hosts') diff --git a/hosts/jontop/default.nix b/hosts/jontop/default.nix new file mode 100644 index 0000000..4e53279 --- /dev/null +++ b/hosts/jontop/default.nix @@ -0,0 +1,32 @@ +{ inputs, config, lib, modulesPath, pkgs, ... }: + +{ + imports = [ + ./hardware.nix + ../../modules/hardware/bluetooth.nix + ]; + + #Boot options + boot = { + loader = { + systemd-boot = { + enable = true; + configurationLimit = 8; + }; + efi.canTouchEfiVariables = true; + timeout = 5; + }; + kernelPackages = pkgs.linuxPackages_latest; + }; + + + hardware.opengl = { + enable = true; + }; + + programs.light.enable = true; + + awesome.enable = true; + mullvad-vpn.enable = true; +} + diff --git a/hosts/jontop/hardware.nix b/hosts/jontop/hardware.nix new file mode 100644 index 0000000..7d3f7c9 --- /dev/null +++ b/hosts/jontop/hardware.nix @@ -0,0 +1,37 @@ +{ ... }: +{ + imports = + [ (modulesPath + "/installer/scan/not-detected.nix") ]; + + boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" "sd_mod" "sdhci_pci" ]; + boot.initrd.kernelModules = [ "i915" ]; + boot.kernelModules = [ "kvm-intel" ]; + boot.extraModulePackages = [ ]; + + fileSystems."/" = + { device = "/dev/disk/by-uuid/72e455f9-4b10-4cb2-a8e4-cfe39c4a8d1f"; + fsType = "btrfs"; + }; + + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/27F7-4AFD"; + fsType = "vfat"; + }; + + swapDevices = + [ { device = "/dev/disk/by-uuid/4133a381-ab7d-4a25-9013-3f4b2d31bc5a"; } + ]; + + #SSD-optimization + services.fstrim.enable = true; + + #Firmware + nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + + #Networking + networking.hostName = "jontop"; + networking.useDHCP = lib.mkDefault true; + networking.networkmanager.enable = true; +} -- cgit v1.2.1