diff options
author | Jasper Ras <jaspert.ras@gmail.com> | 2024-11-14 19:51:14 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-14 19:55:56 +0100 |
commit | cef48a3a23b75d5cfb945912bd6609e8212b0d14 (patch) | |
tree | abdee439bddbd57ef2c7ea18641b07f204ccebfa /hosts/work.nix | |
parent | 2c89cbb5cae2cd90be95700935a4c3e40ed08907 (diff) |
Move around stuff
Diffstat (limited to 'hosts/work.nix')
-rw-r--r-- | hosts/work.nix | 9 |
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 } |