Clear (config): update flake & make server profile private.
This commit is contained in:
parent
c4e9be9523
commit
5c59c0934d
7 changed files with 74 additions and 93 deletions
19
flake.nix
19
flake.nix
|
|
@ -50,12 +50,12 @@
|
|||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations.template-hostname = makeConfig "thinkbook" {
|
||||
hostName = "template-hostname";
|
||||
userName = "template";
|
||||
additionalOverlays = [ inputs.nix-vscode-extensions.overlays.default ];
|
||||
systemArch = "x86_64-linux";
|
||||
};
|
||||
# nixosConfigurations.template-hostname = makeConfig "thinkbook" {
|
||||
# hostName = "template-hostname";
|
||||
# userName = "template";
|
||||
# additionalOverlays = [ inputs.nix-vscode-extensions.overlays.default ];
|
||||
# systemArch = "x86_64-linux";
|
||||
# };
|
||||
|
||||
nixosConfigurations.book = makeConfig "thinkbook" {
|
||||
hostName = "book";
|
||||
|
|
@ -63,5 +63,12 @@
|
|||
additionalOverlays = [ inputs.nix-vscode-extensions.overlays.default ];
|
||||
systemArch = "x86_64-linux";
|
||||
};
|
||||
|
||||
nixosConfigurations.minic = makeConfig "mini-pc" {
|
||||
hostName = "minic";
|
||||
userName = "guppy";
|
||||
additionalOverlays = [ ];
|
||||
systemArch = "x86_64-linux";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue