Fixes system rebuilding

This commit is contained in:
Emmet 2024-01-26 14:45:23 -06:00
parent 7cd01cfc0c
commit 15a9097acf
2 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@
../../system/hardware/opengl.nix ../../system/hardware/opengl.nix
../../system/hardware/printing.nix ../../system/hardware/printing.nix
../../system/hardware/bluetooth.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/flatpak.nix
../../system/app/virtualization.nix ../../system/app/virtualization.nix
( import ../../system/app/docker.nix {storageDriver = "btrfs"; inherit userSettings lib;} ) ( import ../../system/app/docker.nix {storageDriver = "btrfs"; inherit userSettings lib;} )
@ -74,7 +74,7 @@
isNormalUser = true; isNormalUser = true;
description = userSettings.name; description = userSettings.name;
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; []; packages = [];
uid = 1000; uid = 1000;
}; };

View file

@ -1,4 +1,4 @@
{ ... }: { config, pkgs, ... }:
{ {
boot.kernelPackages = pkgs.linuxPackages_zen; boot.kernelPackages = pkgs.linuxPackages_zen;