config/hosts/vm/configuration.nix

61 lines
1.2 KiB
Nix

{
self,
pkgs,
modulesPath,
...
}:
{
imports = [
"${modulesPath}/profiles/all-hardware.nix"
"${modulesPath}/installer/cd-dvd/iso-image.nix"
];
mj = {
stateVersion = "24.05";
timeZone = "UTC";
username = "nixos";
base.users = {
enable = true;
user.initialHashedPassword = "";
root.initialHashedPassword = "";
};
};
boot = {
loader.systemd-boot.enable = true;
kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
supportedFilesystems = [
"zfs"
"btrfs"
];
};
isoImage = {
isoName = "toolshed-${self.lastModifiedDate}.iso";
squashfsCompression = "zstd";
appendToMenuLabel = " Toolshed ${self.lastModifiedDate}";
makeEfiBootable = true; # EFI booting
makeUsbBootable = true; # USB booting
};
swapDevices = [ ];
services = {
getty.autologinUser = "nixos";
xserver.autorun = false;
autorandr.enable = true;
};
security.pam.services.lightdm.text = ''
auth sufficient pam_succeed_if.so user ingroup wheel
'';
networking = {
hostName = "vm";
domain = "jakstys.lt";
firewall.allowedTCPPorts = [ 22 ];
hostId = "abefef01";
};
}