From 7217c47d0eda6e1d7753900efdf3dcb668aead0f Mon Sep 17 00:00:00 2001 From: notohh Date: Fri, 16 Dec 2022 01:10:11 -0500 Subject: [PATCH] update kernel --- configuration.nix | 6 ++---- hardware-configuration.nix | 9 +++++---- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/configuration.nix b/configuration.nix index f63d7a6..b020f6f 100644 --- a/configuration.nix +++ b/configuration.nix @@ -12,6 +12,7 @@ boot.loader.systemd-boot.configurationLimit = 5; boot.loader.efi.canTouchEfiVariables = true; boot.loader.efi.efiSysMountPoint = "/boot/efi"; + boot.kernelPackages = pkgs.linuxPackages_latest; boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ]; boot.kernelModules = [ "v4l2loopback" "kvm-intel" ]; @@ -87,7 +88,7 @@ users.users.notoh = { isNormalUser = true; description = "notoh"; - extraGroups = [ "networkmanager" "wheel" "disk" "video" ]; + extraGroups = [ "networkmanager" "wheel" "disk" "video" "input" ]; packages = with pkgs; [ # essential firefox @@ -128,12 +129,9 @@ wine lutris bottles - gamescope # theming catppuccin-gtk - catppuccin-cursors - papirus-folders # fun stuff cbonsai diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 84a5283..21e382b 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -27,11 +27,12 @@ { device = "/dev/disk/by-uuid/44351feb-6297-47c9-890f-27c9e22a05cb"; fsType = "ext4"; }; + fileSystems."/hdd" = - { - device = "/dev/disk/by-uuid/e2e4c4f3-51df-4020-b557-a7cf684de85b"; - fsType = "ext4"; - }; + { + device = "/dev/disk/by-uuid/e2e4c4f3-51df-4020-b557-a7cf684de85b"; + fsType = "ext4"; + }; swapDevices = [ { device = "/dev/disk/by-uuid/a850f552-bf4f-45f9-b123-e924980fd0e6"; }