diff --git a/configurations/home-manager/eve/default.nix b/configurations/home-manager/eve/default.nix index 0ea88ee..4e1d6fd 100644 --- a/configurations/home-manager/eve/default.nix +++ b/configurations/home-manager/eve/default.nix @@ -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"; + } + ]; + }; }; } diff --git a/configurations/nixos/emergent/disco-configuration.nix b/configurations/nixos/emergent/disco-configuration.nix index 29e13fe..ec002b2 100644 --- a/configurations/nixos/emergent/disco-configuration.nix +++ b/configurations/nixos/emergent/disco-configuration.nix @@ -31,7 +31,7 @@ zpool = { zroot = { type = "zpool"; - mode = "mirror"; + mode = ""; options.cachefile = "none"; rootFsOptions = { compression = "zstd";