diff options
Diffstat (limited to 'users/aspen/system/home/machines/lusca.nix')
-rw-r--r-- | users/aspen/system/home/machines/lusca.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/users/aspen/system/home/machines/lusca.nix b/users/aspen/system/home/machines/lusca.nix index fc5f606639d6..d791b0ea9ded 100644 --- a/users/aspen/system/home/machines/lusca.nix +++ b/users/aspen/system/home/machines/lusca.nix @@ -1,14 +1,13 @@ { pkgs, lib, config, ... }: -let - inherit (builtins) pathExists; -in -{ +let inherit (builtins) pathExists; +in { imports = [ ../platforms/linux.nix ../modules/common.nix ../modules/email.nix + ../modules/depot-inbox.nix ../modules/desktop.nix ] ++ (lib.optional (pathExists ../modules/private.nix) ../modules/private.nix); |