diff options
| author | Rosa <rosaontheweb@proton.me> | 2026-01-14 14:49:34 -0500 |
|---|---|---|
| committer | Rosa <rosaontheweb@proton.me> | 2026-01-14 14:49:34 -0500 |
| commit | 691e161926912b7408dfc328712d892515af07b1 (patch) | |
| tree | 8a62ec578d45fe055cba8fa07b41af7f1623b4f5 /hosts | |
| parent | 04c3835a382bcae83e47001f8b10ae1221102805 (diff) | |
format code
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/lust/default.nix | 7 | ||||
| -rw-r--r-- | hosts/lust/hardware-configuration.nix | 65 |
2 files changed, 46 insertions, 26 deletions
diff --git a/hosts/lust/default.nix b/hosts/lust/default.nix index ac86b7b..9d0bfaf 100644 --- a/hosts/lust/default.nix +++ b/hosts/lust/default.nix @@ -1,4 +1,9 @@ -{ config, lib, pkgs, ... }: +{ + config, + lib, + pkgs, + ... +}: { imports = [ ../../common/pipewire.nix diff --git a/hosts/lust/hardware-configuration.nix b/hosts/lust/hardware-configuration.nix index 2614284..b7830ed 100644 --- a/hosts/lust/hardware-configuration.nix +++ b/hosts/lust/hardware-configuration.nix @@ -1,41 +1,56 @@ # 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, ... }: +{ + config, + lib, + pkgs, + modulesPath, + ... +}: { - imports = - [ (modulesPath + "/installer/scan/not-detected.nix") - ]; + imports = [ + (modulesPath + "/installer/scan/not-detected.nix") + ]; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ]; + boot.initrd.availableKernelModules = [ + "nvme" + "xhci_pci" + "ahci" + "usbhid" + "sd_mod" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; - fsType = "btrfs"; - options = [ "subvol=@rootfs" ]; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; + fsType = "btrfs"; + options = [ "subvol=@rootfs" ]; + }; - fileSystems."/etc" = - { device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; - fsType = "btrfs"; - options = [ "subvol=@etc" ]; - }; + fileSystems."/etc" = { + device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; + fsType = "btrfs"; + options = [ "subvol=@etc" ]; + }; - fileSystems."/home" = - { device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; - fsType = "btrfs"; - options = [ "subvol=@homes" ]; - }; + fileSystems."/home" = { + device = "/dev/disk/by-uuid/4602324b-c9d4-43f5-afb7-145d0f3bddcb"; + fsType = "btrfs"; + options = [ "subvol=@homes" ]; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/A8C6-E3EB"; - fsType = "vfat"; - options = [ "fmask=0022" "dmask=0022" ]; - }; + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/A8C6-E3EB"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; swapDevices = [ ]; |
