Make git-crypt part of the system config

This commit is contained in:
Jimbo 2024-08-25 00:19:22 -04:00
parent d535215ff3
commit 90845f8989
2 changed files with 3 additions and 4 deletions

View file

@ -8,8 +8,4 @@
userName = secrets.jimUsername;
userEmail = secrets.jimEmail;
};
home.packages = with pkgs; [
git-crypt
];
}

View file

@ -3,4 +3,7 @@
enable = true;
enableSSHSupport = true;
};
environment.systemPackages = with pkgs; [
git-crypt
];
}