diff options
Diffstat (limited to 'nixpkgs')
-rw-r--r-- | nixpkgs/kusanagi-old.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/nixpkgs/kusanagi-old.nix b/nixpkgs/kusanagi-old.nix deleted file mode 100644 index 4d605c1..0000000 --- a/nixpkgs/kusanagi-old.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ pkgs, ... }: { - imports = [ ./common.nix ]; - - home.homeDirectory = "/home/lx"; - xdg.userDirs.download = "/home/lx/Downloads"; - - services.gpg-agent.enable = true; - services.gpg-agent.enableSshSupport = false; - services.gpg-agent.pinentryFlavor = "qt"; - services.gpg-agent.extraConfig = "no-allow-external-cache"; - - programs.keychain = { - enable = true; - enableBashIntegration = true; - keys = [ "~/.ssh/id_ed25519" ]; - }; - services.syncthing.enable = true; -} - |