init: initial setup

This commit is contained in:
strix 2026-08-22 23:28:20 +02:00
commit 69a92fdd5e
10 changed files with 444 additions and 0 deletions

27
devices/p14s/default.nix Normal file
View 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
}