From 15a9097acf8f4af6ca05bf11f1a3cf78eb1fb8fd Mon Sep 17 00:00:00 2001 From: Emmet Date: Fri, 26 Jan 2024 14:45:23 -0600 Subject: [PATCH] Fixes system rebuilding --- profiles/work/configuration.nix | 4 ++-- system/hardware/kernel.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/work/configuration.nix b/profiles/work/configuration.nix index 4a7329a..0119f81 100644 --- a/profiles/work/configuration.nix +++ b/profiles/work/configuration.nix @@ -13,7 +13,7 @@ ../../system/hardware/opengl.nix ../../system/hardware/printing.nix ../../system/hardware/bluetooth.nix - (./. + "../../../system/wm"+("/"+wm)+".nix") # My window manager + (./. + "../../../system/wm"+("/"+userSettings.wm)+".nix") # My window manager ../../system/app/flatpak.nix ../../system/app/virtualization.nix ( import ../../system/app/docker.nix {storageDriver = "btrfs"; inherit userSettings lib;} ) @@ -74,7 +74,7 @@ isNormalUser = true; description = userSettings.name; extraGroups = [ "networkmanager" "wheel" ]; - packages = with pkgs; []; + packages = []; uid = 1000; }; diff --git a/system/hardware/kernel.nix b/system/hardware/kernel.nix index 3bfd156..7d7965a 100644 --- a/system/hardware/kernel.nix +++ b/system/hardware/kernel.nix @@ -1,4 +1,4 @@ -{ ... }: +{ config, pkgs, ... }: { boot.kernelPackages = pkgs.linuxPackages_zen;