Compare commits

...

4 commits

2 changed files with 18 additions and 1 deletions

View file

@ -1,6 +1,7 @@
{ {
pkgs, pkgs,
lib, lib,
config,
osConfig, osConfig,
... ...
}: let }: let
@ -72,5 +73,21 @@ in {
programs = { programs = {
# Let Home Manager install and manage itself. # Let Home Manager install and manage itself.
home-manager.enable = true; 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 = { zpool = {
zroot = { zroot = {
type = "zpool"; type = "zpool";
mode = "mirror"; mode = "";
options.cachefile = "none"; options.cachefile = "none";
rootFsOptions = { rootFsOptions = {
compression = "zstd"; compression = "zstd";