Update shared.nix

This commit is contained in:
Thilo Hohlt
2023-07-26 10:59:45 +02:00
committed by GitHub
parent 39c8529289
commit 32802cfbaa

View File

@@ -29,4 +29,15 @@
"/home".options = [ "compress=zstd" ]; "/home".options = [ "compress=zstd" ];
"/nix".options = [ "compress=zstd" "noatime" ]; "/nix".options = [ "compress=zstd" "noatime" ];
}; };
home-manager.users.thiloho = { pkgs, lib, config, ... }: {
git = {
enable = true;
userName = "thiloho";
userEmail = "123883702+thiloho@users.noreply.github.com";
# signing = {
# signByDefault = true;
# };
};
};
} }