From 28a629aa70f125b343a8887e9a80f720fd56ca78 Mon Sep 17 00:00:00 2001 From: oddlama Date: Tue, 5 Sep 2023 00:53:00 +0200 Subject: [PATCH] refactor: move git to myuser and remove obsolete nix config entry --- users/common/default.nix | 3 --- users/myuser/default.nix | 1 + users/{common => myuser}/git.nix | 0 3 files changed, 1 insertion(+), 3 deletions(-) rename users/{common => myuser}/git.nix (100%) diff --git a/users/common/default.nix b/users/common/default.nix index d31034c..f86d90c 100644 --- a/users/common/default.nix +++ b/users/common/default.nix @@ -2,13 +2,10 @@ imports = [ ./modules/uid.nix - ./git.nix ./htop.nix ./impermanence.nix ./neovim.nix ./shell ./utils.nix ]; - - xdg.configFile."nixpkgs/config.nix".text = "{ allowUnfree = true; }"; } diff --git a/users/myuser/default.nix b/users/myuser/default.nix index f81cc3b..2d2fedc 100644 --- a/users/myuser/default.nix +++ b/users/myuser/default.nix @@ -32,6 +32,7 @@ in { ./graphical ./neovim + ./git.nix ./dev.nix ./gpg.nix ./ssh.nix diff --git a/users/common/git.nix b/users/myuser/git.nix similarity index 100% rename from users/common/git.nix rename to users/myuser/git.nix