init: initial setup
This commit is contained in:
commit
69a92fdd5e
10 changed files with 444 additions and 0 deletions
27
devices/p14s/default.nix
Normal file
27
devices/p14s/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [
|
||||
../../common
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
networking.hostName = "p14s";
|
||||
|
||||
boot.initrd.luks.devices."luks-d51bdb99-5966-40d3-a920-83ea78a73699".device = "/dev/disk/by-uuid/d51bdb99-5966-40d3-a920-83ea78a73699";
|
||||
|
||||
virtualisation.vmVariant = {
|
||||
virtualisation = {
|
||||
memorySize = 8192;
|
||||
cores = 6;
|
||||
};
|
||||
};
|
||||
|
||||
users.users."guest" = {
|
||||
isNormalUser = true;
|
||||
name = "Guest";
|
||||
initialPassword = "guest";
|
||||
createHome = true;
|
||||
};
|
||||
|
||||
system.stateVersion = "26.05"; # yes
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue