From d88c1c15885193f639f111cbb7610f9aaf95c7e9 Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sat, 31 May 2025 19:14:37 -0500 Subject: [PATCH 1/3] updated mode for zfs disk --- configurations/nixos/emergent/disco-configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; From 69b8f5ceca186be1e40ee8db07c717e7ee54d269 Mon Sep 17 00:00:00 2001 From: Eve Halfmann Date: Sun, 1 Jun 2025 00:44:58 +0000 Subject: [PATCH 2/3] generate ssh keys for each system eve is on --- configurations/home-manager/eve/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/configurations/home-manager/eve/default.nix b/configurations/home-manager/eve/default.nix index 0ea88ee..b353363 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,14 @@ in { programs = { # Let Home Manager install and manage itself. home-manager.enable = true; + + openssh = { + hostKeys = [ + { + type = "ed25519"; + path = "${config.home.username}_${osConfig.networking.hostName}_ed25519"; + } + ]; + }; }; } From caea10c1e25ab97959aef7e28c5e90bfe45dbb32 Mon Sep 17 00:00:00 2001 From: Eve Halfmann Date: Sun, 1 Jun 2025 00:45:13 +0000 Subject: [PATCH 3/3] set git agent information --- configurations/home-manager/eve/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configurations/home-manager/eve/default.nix b/configurations/home-manager/eve/default.nix index b353363..4e1d6fd 100644 --- a/configurations/home-manager/eve/default.nix +++ b/configurations/home-manager/eve/default.nix @@ -74,6 +74,13 @@ in { # 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 = [ {