Compare commits

..

4 commits

2 changed files with 18 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{
pkgs,
lib,
config,
osConfig,
...
}: let
@ -72,5 +73,21 @@ in {
programs = {
# Let Home Manager install and manage itself.
home-manager.enable = true;
git = {
enable = true;
userName = "Eve Halfmann";
userEmail = "evesnrobins@gmail.com";
extraConfig.init.defaultBranch = "main";
};
openssh = {
hostKeys = [
{
type = "ed25519";
path = "${config.home.username}_${osConfig.networking.hostName}_ed25519";
}
];
};
};
}

View file

@ -31,7 +31,7 @@
zpool = {
zroot = {
type = "zpool";
mode = "mirror";
mode = "";
options.cachefile = "none";
rootFsOptions = {
compression = "zstd";