From 0f4cf52669f1c8099713ffc4abc62babf298c00c Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 21 Dec 2023 11:31:36 +0000 Subject: [PATCH] Move pass.nix into accounts subdirectory --- flake.nix | 1 - home/accounts/default.nix | 6 +----- home/{ => accounts}/pass.nix | 0 3 files changed, 1 insertion(+), 6 deletions(-) rename home/{ => accounts}/pass.nix (100%) diff --git a/flake.nix b/flake.nix index 8b022db9..0123caf8 100644 --- a/flake.nix +++ b/flake.nix @@ -30,7 +30,6 @@ ./home/default.nix ./home/emacs.nix ./home/firefox.nix - ./home/pass.nix ]; stateVersion = "23.05"; }; diff --git a/home/accounts/default.nix b/home/accounts/default.nix index e9b5384f..7ba8f60a 100644 --- a/home/accounts/default.nix +++ b/home/accounts/default.nix @@ -1,5 +1 @@ -{ config, lib, pkgs, ... }: - -{ - imports = [ ./email.nix ./calendar.nix ./contact.nix ]; -} +{ ... }: { imports = [ ./pass.nix ./email.nix ./calendar.nix ./contact.nix ]; } diff --git a/home/pass.nix b/home/accounts/pass.nix similarity index 100% rename from home/pass.nix rename to home/accounts/pass.nix