diff options
| author | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-25 13:40:27 -0400 |
|---|---|---|
| committer | Stefan Weigl-Bosker <stefan@s00.xyz> | 2025-07-25 13:40:27 -0400 |
| commit | f2fb01a55b54dae9a5c26c7e1bae3d17c18de73e (patch) | |
| tree | c861617d8ff6f5fdf188b1f7dd5774c1d17a3cd5 /form | |
| parent | 8a0457f14d000b4aae8bbd4e950654802f01c584 (diff) | |
| download | home-f2fb01a55b54dae9a5c26c7e1bae3d17c18de73e.tar.gz | |
repo: format tree
Diffstat (limited to 'form')
| -rw-r--r-- | form/configuration.nix | 25 | ||||
| -rw-r--r-- | form/hardware-configuration.nix | 50 | ||||
| -rw-r--r-- | form/home.nix | 10 |
3 files changed, 58 insertions, 27 deletions
diff --git a/form/configuration.nix b/form/configuration.nix index 4e8b78c..62c6a41 100644 --- a/form/configuration.nix +++ b/form/configuration.nix @@ -1,10 +1,15 @@ -{ config, lib, pkgs, inputs, ... }: { - imports = - [ - ../nixos - ./hardware-configuration.nix - ]; + config, + lib, + pkgs, + inputs, + ... +}: +{ + imports = [ + ../nixos + ./hardware-configuration.nix + ]; config.nixos = { username = "stefan"; @@ -16,10 +21,14 @@ system.stateVersion = "24.11"; hardware.graphics.enable = true; - boot.initrd.kernelModules = [ "nvidia" "nvidia_uvm" "nvidia_drm" ]; + boot.initrd.kernelModules = [ + "nvidia" + "nvidia_uvm" + "nvidia_drm" + ]; boot.extraModulePackages = [ config.boot.kernelPackages.nvidia_x11 ]; # boot.kernelParams = []; - services.xserver.videoDrivers = ["nvidia"]; + services.xserver.videoDrivers = [ "nvidia" ]; services.desktopManager.plasma6.enable = true; services.displayManager.sddm = { enable = false; diff --git a/form/hardware-configuration.nix b/form/hardware-configuration.nix index 64f00e2..a7d05eb 100644 --- a/form/hardware-configuration.nix +++ b/form/hardware-configuration.nix @@ -1,32 +1,48 @@ # 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" "usb_storage" "usbhid" "sd_mod" ]; + boot.initrd.availableKernelModules = [ + "nvme" + "xhci_pci" + "ahci" + "usb_storage" + "usbhid" + "sd_mod" + ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; - fileSystems."/" = - { device = "/dev/disk/by-uuid/1e39c424-417d-4218-8655-de4bb9ad57b3"; - fsType = "ext4"; - }; + fileSystems."/" = { + device = "/dev/disk/by-uuid/1e39c424-417d-4218-8655-de4bb9ad57b3"; + fsType = "ext4"; + }; - fileSystems."/boot" = - { device = "/dev/disk/by-uuid/F50B-956E"; - fsType = "vfat"; - options = [ "fmask=0077" "dmask=0077" ]; - }; - - swapDevices = - [ { device = "/dev/disk/by-uuid/6fa8f3f6-f884-4879-9c11-90340ff6b3c2"; } + fileSystems."/boot" = { + device = "/dev/disk/by-uuid/F50B-956E"; + fsType = "vfat"; + options = [ + "fmask=0077" + "dmask=0077" ]; + }; + + swapDevices = [ + { device = "/dev/disk/by-uuid/6fa8f3f6-f884-4879-9c11-90340ff6b3c2"; } + ]; # 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 diff --git a/form/home.nix b/form/home.nix index c9f7a2f..4a691ea 100644 --- a/form/home.nix +++ b/form/home.nix @@ -1,4 +1,10 @@ -{ inputs, config, lib, pkgs, ... }: +{ + inputs, + config, + lib, + pkgs, + ... +}: { imports = [ ../modules/global.nix @@ -8,7 +14,7 @@ config.modules = { global = { wayland = true; - + extraPackages = with pkgs; [ wmenu cmatrix |