diff options
Diffstat (limited to 'accounts/gkleen@vidhar.nix')
-rw-r--r-- | accounts/gkleen@vidhar.nix | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/accounts/gkleen@vidhar.nix b/accounts/gkleen@vidhar.nix index 2bb4f32b..bf75f694 100644 --- a/accounts/gkleen@vidhar.nix +++ b/accounts/gkleen@vidhar.nix | |||
@@ -1,7 +1,14 @@ | |||
1 | { flake, userName, ... }: { | 1 | { flake, pkgs, userName, ... }: { |
2 | imports = with flake.nixosModules.userProfiles.${userName}; [ | 2 | imports = with flake.nixosModules.userProfiles.${userName}; [ |
3 | feeds | 3 | feeds |
4 | ]; | 4 | ]; |
5 | 5 | ||
6 | config.users.users.${userName}.uid = 1000; | 6 | config = { |
7 | users.users.${userName}.uid = 1000; | ||
8 | home-manager.users.${userName} = { | ||
9 | home.packages = with pkgs; [ | ||
10 | unison | ||
11 | ]; | ||
12 | }; | ||
13 | }; | ||
7 | } | 14 | } |