You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nixfiles/config/hosts/lain/iso.nix

16 lines
396 B
Nix

{ config, lib, inputs, ... }: {
imports = [
"${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
./configuration.nix
];
networking.networkmanager.enable = lib.mkForce false;
networking.wireless = {
enable = true;
networks."Fernmeldestelle".psk = null;
interfaces = [ "wlan0" ];
};
users.users.emily = {
initialPassword = "changeme";
};
}