cleanup code

This commit is contained in:
Chris Kruining 2025-07-31 14:46:28 +02:00
parent 80c3873cf3
commit 74212cbd58
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
10 changed files with 106 additions and 7 deletions

View file

@ -0,0 +1,3 @@
# Description
TBD

View file

@ -0,0 +1,3 @@
# Description
Installer ISO

View file

@ -0,0 +1,30 @@
{ 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";
}

View file

@ -0,0 +1,3 @@
# Description
TBD