ISO: stuffies

This commit is contained in:
blahai 2025-01-27 22:31:45 +02:00
parent 35e372a025
commit 0863504183
No known key found for this signature in database
7 changed files with 146 additions and 1 deletions

View file

@ -0,0 +1,19 @@
{lib, ...}: let
inherit (lib.modules) mkForce;
in {
# use networkmanager in the live environment
networking.networkmanager = {
enable = true;
# we don't want any plugins, they only takeup space
# you might consider adding some if you need a VPN for example
plugins = mkForce [];
};
networking.wireless.enable = mkForce false;
# allow ssh into the system for headless installs
systemd.services.sshd.wantedBy = mkForce ["multi-user.target"];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPbmiNqoyeKXk/VopFm2cFfEnV4cKCFBhbhyYB69Fuu"
];
}