sneeuwvlok/systems/x86_64-linux/varda/default.nix
Chris Kruining 74212cbd58
cleanup code
2025-07-31 14:46:28 +02:00

30 lines
637 B
Nix

{ pkgs, ... }:
{
imports = [
"${pkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-calamares-plasma6.nix"
"${pkgs}/nixos/modules/installer/cd-dvd/channel.nix"
];
sneeuwvlok = {
services = {
networking.ssh.enable = true;
media.enable = true;
};
editor = {
nano.enable = true;
};
};
boot = {
kernelPackages = pkgs.linuxPackages_latest;
supportedFilesystems = lib.mkForce ["btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs"];
};
services = {
qemuGuest.enable = true;
openssh.settings.PermitRootLogin = "yes";
};
system.stateVersion = "23.11";
}