summaryrefslogtreecommitdiff
path: root/hosts/work.nix
diff options
context:
space:
mode:
authorJasper Ras <jaspert.ras@gmail.com>2024-11-14 19:51:14 +0100
committerJasper Ras <jras@hostnet.nl>2024-11-14 19:55:56 +0100
commitcef48a3a23b75d5cfb945912bd6609e8212b0d14 (patch)
treeabdee439bddbd57ef2c7ea18641b07f204ccebfa /hosts/work.nix
parent2c89cbb5cae2cd90be95700935a4c3e40ed08907 (diff)
Move around stuff
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
}