Update default username, change account for Legion
This commit is contained in:
parent
88522b265b
commit
1d99e2b00d
37
flake.nix
37
flake.nix
|
@ -29,7 +29,7 @@
|
|||
}: let
|
||||
systemConfig = {
|
||||
hostName ? "Atlas",
|
||||
user ? "xenia",
|
||||
user ? "pixelifytica",
|
||||
system ? "x86_64-linux",
|
||||
stateVersion ? "23.05",
|
||||
systemModules ? [],
|
||||
|
@ -169,27 +169,22 @@
|
|||
nixosConfigurations = {
|
||||
## Server
|
||||
|
||||
Legion = let
|
||||
Legion = systemConfig {
|
||||
hostName = "Legion";
|
||||
user = "xenia";
|
||||
system = "x86_64-linux";
|
||||
in
|
||||
systemConfig {
|
||||
inherit hostName user system;
|
||||
systemModules = [
|
||||
./services/nix-serve.nix
|
||||
./services/caddy.nix
|
||||
./services/gitea.nix
|
||||
./services/grafana.nix
|
||||
./services/minecraft.nix
|
||||
./services/sshd.nix
|
||||
./services/syncthing.nix
|
||||
];
|
||||
homeModules = [
|
||||
./home/default.nix
|
||||
./home/emacs/default.nix
|
||||
];
|
||||
};
|
||||
systemModules = [
|
||||
./services/nix-serve.nix
|
||||
./services/caddy.nix
|
||||
./services/gitea.nix
|
||||
./services/grafana.nix
|
||||
./services/minecraft.nix
|
||||
./services/sshd.nix
|
||||
./services/syncthing.nix
|
||||
];
|
||||
homeModules = [
|
||||
./home/default.nix
|
||||
./home/emacs/default.nix
|
||||
];
|
||||
};
|
||||
|
||||
## Personal
|
||||
|
||||
|
|
Loading…
Reference in a new issue