Update default username, change account for Legion

This commit is contained in:
Evie Litherland-Smith 2024-03-08 07:01:08 +00:00
parent 88522b265b
commit 1d99e2b00d

View file

@ -29,7 +29,7 @@
}: let }: let
systemConfig = { systemConfig = {
hostName ? "Atlas", hostName ? "Atlas",
user ? "xenia", user ? "pixelifytica",
system ? "x86_64-linux", system ? "x86_64-linux",
stateVersion ? "23.05", stateVersion ? "23.05",
systemModules ? [], systemModules ? [],
@ -169,27 +169,22 @@
nixosConfigurations = { nixosConfigurations = {
## Server ## Server
Legion = let Legion = systemConfig {
hostName = "Legion"; hostName = "Legion";
user = "xenia"; systemModules = [
system = "x86_64-linux"; ./services/nix-serve.nix
in ./services/caddy.nix
systemConfig { ./services/gitea.nix
inherit hostName user system; ./services/grafana.nix
systemModules = [ ./services/minecraft.nix
./services/nix-serve.nix ./services/sshd.nix
./services/caddy.nix ./services/syncthing.nix
./services/gitea.nix ];
./services/grafana.nix homeModules = [
./services/minecraft.nix ./home/default.nix
./services/sshd.nix ./home/emacs/default.nix
./services/syncthing.nix ];
]; };
homeModules = [
./home/default.nix
./home/emacs/default.nix
];
};
## Personal ## Personal