config/hosts/vm/configuration.nix

54 lines
1.1 KiB
Nix
Raw Normal View History

{
2024-02-04 16:18:47 +02:00
self,
lib,
pkgs,
2024-02-04 16:18:47 +02:00
modulesPath,
...
}: {
2024-02-04 16:18:47 +02:00
imports = [
"${modulesPath}/profiles/all-hardware.nix"
"${modulesPath}/installer/cd-dvd/iso-image.nix"
];
mj = {
2024-02-04 16:18:47 +02:00
stateVersion = "23.11";
timeZone = "UTC";
2024-03-04 14:53:50 +02:00
username = "nixos";
base.users = {
enable = true;
user.initialHashedPassword = "";
root.initialHashedPassword = "";
};
};
2024-02-04 16:18:47 +02:00
isoImage = {
2024-02-04 18:16:15 +02:00
isoName = "toolshed-${self.lastModifiedDate}.iso";
2024-02-04 16:18:47 +02:00
squashfsCompression = "zstd";
appendToMenuLabel = " Toolshed ${self.lastModifiedDate}";
makeEfiBootable = true; # EFI booting
makeUsbBootable = true; # USB booting
};
2024-02-04 16:18:47 +02:00
boot.kernelPackages = pkgs.zfs.latestCompatibleLinuxPackages;
swapDevices = [];
services = {
2024-02-04 16:18:47 +02:00
getty.autologinUser = "nixos";
};
2024-03-04 14:53:50 +02:00
# do not autostart lightdm, leave at tty
systemd.services.display-manager.wantedBy = lib.mkForce [];
security.pam.services.lightdm.text = ''
auth sufficient pam_succeed_if.so user ingroup wheel
'';
2024-02-04 16:18:47 +02:00
networking = {
hostName = "vm";
2024-02-04 22:28:36 +02:00
domain = "jakstys.lt";
2024-02-04 16:18:47 +02:00
firewall.allowedTCPPorts = [22];
};
}