move citrix & zoom to home/work

This commit is contained in:
Don Harper 2024-06-15 12:00:45 -05:00
parent bb44742f23
commit 26cabf185d
17 changed files with 12 additions and 3 deletions

View file

@ -13,9 +13,6 @@
./services.nix ./services.nix
./sway.nix ./sway.nix
./terminals.nix ./terminals.nix
] ++ lib.optional (pkgs.hostPlatform.system == "x86_64-linux") [
./citrix.nix
./zoom.nix
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
anonymousPro anonymousPro

9
home/work/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ pkgs, inputs, ... }:
{
home-manager.users.don = {
imports = [
./citrix.nix
./zoom.nix
];
};
}

View file

@ -11,6 +11,7 @@
../workstation/games ../workstation/games
../themes.nix ../themes.nix
../wm ../wm
../../home/work
]; ];
networking.hostName = "eve"; networking.hostName = "eve";
} }

View file

@ -12,6 +12,7 @@
../workstation/games ../workstation/games
../wm ../wm
../themes.nix ../themes.nix
../../home/work
]; ];
networking.hostName = "loki"; networking.hostName = "loki";
} }

View file

@ -10,6 +10,7 @@
../workstation ../workstation
../wm ../wm
../themes.nix ../themes.nix
../../home/work
]; ];
networking.hostName = "smaug"; networking.hostName = "smaug";
} }