1
0
Fork 0
forked from emily/nixfiles
nixfiles-emily/config/hosts/lain/iso.nix

17 lines
426 B
Nix
Raw Normal View History

2024-06-12 15:00:55 +02:00
{ lib, inputs, ... }: {
2024-03-27 23:39:09 +01:00
imports = [
2024-11-08 14:49:21 +01:00
inputs.sops-nix.nixosModules.sops
2024-03-27 23:39:09 +01:00
"${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";
};
}