diff options
| -rw-r--r-- | home/default.nix | 1 | ||||
| -rw-r--r-- | home/isolation.nix | 4 | ||||
| -rw-r--r-- | shenvs/config.nix | 2 |
3 files changed, 6 insertions, 1 deletions
diff --git a/home/default.nix b/home/default.nix index 2f928bf..0941f42 100644 --- a/home/default.nix +++ b/home/default.nix @@ -3,6 +3,7 @@ with lib; { imports = [ hm-isolation.homeManagerModule + ./isolation.nix ./unfree.nix ]; diff --git a/home/isolation.nix b/home/isolation.nix new file mode 100644 index 0000000..cfb6872 --- /dev/null +++ b/home/isolation.nix @@ -0,0 +1,4 @@ +{ lib, pkgs, ... }: +with lib; { + home.isolation.enable = true; +} diff --git a/shenvs/config.nix b/shenvs/config.nix index 2c4de6c..4d33f74 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -8,5 +8,5 @@ workstation = [ randall ]; - in common ++ optionals config.local.workstation workstation; + in []; # common ++ optionals config.local.workstation workstation; } |
