16 lines
426 B
Nix
16 lines
426 B
Nix
{ lib, inputs, ... }: {
|
|
imports = [
|
|
inputs.sops-nix.nixosModules.sops
|
|
"${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";
|
|
};
|
|
}
|