migrate username
vi did:web:vt3e.cat
Tue, 05 May 2026 20:54:31 +0100
6 files changed,
11 insertions(+),
10 deletions(-)
M
flake.nix
→
flake.nix
@@ -55,7 +55,7 @@ ivy = mkNixosSystem "ivy" "x86_64-linux";
}; homeConfigurations = { - "willow@dahlia" = home-manager.lib.homeManagerConfiguration { + "apr@dahlia" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages."x86_64-linux"; extraSpecialArgs = { inherit inputs;@@ -67,7 +67,7 @@ inputs.ironbar.homeManagerModules.default
]; }; - "willow@ivy" = home-manager.lib.homeManagerConfiguration { + "apr@ivy" = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages."x86_64-linux"; extraSpecialArgs = { inherit inputs;
M
home/apr-dahlia.nix
→
home/apr-dahlia.nix
@@ -43,8 +43,8 @@ };
}; home = { - username = "willow"; - homeDirectory = "/home/willow"; + username = "apr"; + homeDirectory = "/home/apr"; stateVersion = "25.11"; sessionVariables = {@@ -63,7 +63,7 @@ };
}; file.".ssh/allowed_signers".text = '' - willow ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPWD6wk95qNhk/36vEH34qIRp/TPCcQ+D+u5Xd9/N0m1 + apr ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPWD6wk95qNhk/36vEH34qIRp/TPCcQ+D+u5Xd9/N0m1 did:web:vt3e.cat ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGDXt8vkpi9jOp9dCjoS8u0dC4fDdgb73w8z7VNI42FB did:plc:nz5npphohxgjo2blfipdatam ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINGmmVCj5fvjT09SMmMsheGJ9vMKRF1UWoTEwR7yWeKO '';
M
hosts/common/users.nix
→
hosts/common/users.nix
@@ -4,7 +4,8 @@ users = {
mutableUsers = false; users = { - willow = { + apr = { + uid = 1001; initialPassword = "pass"; isNormalUser = true; extraGroups = [
M
hosts/dahlia/default.nix
→
hosts/dahlia/default.nix
@@ -32,7 +32,7 @@ {
hostName = "192.168.1.107"; system = "x86_64-linux"; protocol = "ssh-ng"; - sshUser = "willow"; + sshUser = "apr"; sshKey = "/etc/nix/id_builder"; maxJobs = 20;@@ -55,7 +55,7 @@
home-manager = { extraSpecialArgs = { inherit inputs; }; users = { - willow = import ../../home/apr-dahlia.nix; + apr = import ../../home/apr-dahlia.nix; }; useGlobalPkgs = true; useUserPackages = true;
M
hosts/ivy/default.nix
→
hosts/ivy/default.nix
@@ -14,7 +14,7 @@
nix.settings.trusted-users = [ "root" "@wheel" - "willow" + "apr" ]; boot = {
M
pkgs/zed.nix
→
pkgs/zed.nix
@@ -86,6 +86,6 @@ description = "A high-performance, multiplayer code editor";
homepage = "https://zed.dev"; platforms = [ "x86_64-linux" ]; license = licenses.mit; - maintainers = with maintainers; [ willow ]; + maintainers = with maintainers; [ apr ]; }; }