summaryrefslogtreecommitdiff
path: root/home/ssh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home/ssh/default.nix')
-rw-r--r--home/ssh/default.nix12
1 files changed, 5 insertions, 7 deletions
diff --git a/home/ssh/default.nix b/home/ssh/default.nix
index c884bf4..efee063 100644
--- a/home/ssh/default.nix
+++ b/home/ssh/default.nix
@@ -4,12 +4,10 @@
...
}: {
# ssh config
- home-manager.users.${config.user} = {
- programs.ssh = {
- enable = true;
- enableDefaultConfig = false;
- matchBlocks."*" = {};
- extraConfig = lib.fileContents ./config;
- };
+ programs.ssh = {
+ enable = true;
+ enableDefaultConfig = false;
+ matchBlocks."*" = {};
+ extraConfig = lib.fileContents ./config;
};
}