🚨 formatting tweaks

This commit is contained in:
2025-08-18 10:31:48 -04:00
parent ac03db4f87
commit 9fbe64a194
4 changed files with 38 additions and 37 deletions

View File

@@ -18,7 +18,8 @@ let
networking.hostName = hostName;
nixpkgs.overlays = [ self.overlays.default ];
})
] ++ modules;
]
++ modules;
specialArgs = { inherit home-manager; };
};
in

View File

@@ -21,7 +21,8 @@ let
nixpkgs.config.allowUnfree = true;
})
{ nixpkgs.hostPlatform = hostSystem; }
] ++ modules;
]
++ modules;
specialArgs = { inherit raspberry-pi-nix sops-nix; };
};
in

View File

@@ -1,23 +1,22 @@
{ lib, pkgs, ... }:
{
users.users.walkah =
{
home = if pkgs.stdenv.isDarwin then "/Users/walkah" else "/home/walkah";
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0mE4MyMnfd1b2nlBJT7kpZ6Vov+ILuGNfzdp5ZBNQe walkah@walkah.net"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM8YMax7PGIrcPNIHkpuNRFgn3HJK6Wepm+ycZWO6jfR walkah@walkah-ipadpro11"
];
}
// lib.optionalAttrs pkgs.stdenv.isLinux {
extraGroups = [
"wheel"
"docker"
];
group = "walkah";
isNormalUser = true;
};
users.users.walkah = {
home = if pkgs.stdenv.isDarwin then "/Users/walkah" else "/home/walkah";
shell = pkgs.zsh;
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJ0mE4MyMnfd1b2nlBJT7kpZ6Vov+ILuGNfzdp5ZBNQe walkah@walkah.net"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM8YMax7PGIrcPNIHkpuNRFgn3HJK6Wepm+ycZWO6jfR walkah@walkah-ipadpro11"
];
}
// lib.optionalAttrs pkgs.stdenv.isLinux {
extraGroups = [
"wheel"
"docker"
];
group = "walkah";
isNormalUser = true;
};
users.groups.walkah = { };
home-manager = {