summaryrefslogtreecommitdiff
path: root/hosts/work.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/work.nix')
-rw-r--r--hosts/work.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/hosts/work.nix b/hosts/work.nix
index f4269ec..f26c99b 100644
--- a/hosts/work.nix
+++ b/hosts/work.nix
@@ -1,4 +1,4 @@
-{ config, pkgs, ... }:
+{ config, pkgs, inputs, ... }:
{
imports = [ ./hardware-configuration/work.nix ];
@@ -104,5 +104,12 @@
packages = with pkgs; [ git helix ];
};
+ home-manager = {
+ useGlobalPkgs = true;
+ useUserPackages = true;
+ users.jras = import ../home-manager/entrypoints/work.nix;
+ extraSpecialArgs = { inherit inputs; primary-monitor = "eDP-1"; };
+ };
+
system.stateVersion = "24.05"; # Do NOT change before reading configuration.nix
}