aboutsummaryrefslogtreecommitdiff
path: root/nix/systems/desktop/home.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-01-16 02:11:26 -0800
committerPreston Pan <ret2pop@gmail.com>2025-01-16 02:11:26 -0800
commit1a3486d77574c06b395ab6cda41084f5ed24a3f4 (patch)
tree69d1051bd14a0c3cb374f84a8c06cb655eba509b /nix/systems/desktop/home.nix
parent2dff9d2b61244fed49136028d0e0f6ae3ae759cf (diff)
modularized nix configuration; builds correctly
Diffstat (limited to 'nix/systems/desktop/home.nix')
-rw-r--r--nix/systems/desktop/home.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/nix/systems/desktop/home.nix b/nix/systems/desktop/home.nix
deleted file mode 100644
index f1a11df..0000000
--- a/nix/systems/desktop/home.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ sops-nix, ... }:
-let
- vars = import ./vars.nix;
-in
-{
- home-manager = {
- sharedModules = [
- sops-nix.homeManagerModules.sops
- ];
- useGlobalPkgs = true;
- useUserPackages = true;
- users."${vars.userName}" = import ./user.nix;
- };
-}