This commit is contained in:
Sebastian Moser
2023-11-21 20:11:26 +01:00
parent 7ed54e66ec
commit c712d76fac
17 changed files with 605 additions and 85 deletions

View File

@@ -6,7 +6,8 @@
../common/nixos-graphical.nix
../common/building.nix
../users/me/default.nix
inputs.home-manager.nixosModules.home-manager
../users/me/gui.nix
];
services.openssh = {
@@ -17,6 +18,13 @@
settings.PermitRootLogin = "yes";
};
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
# to build rpi images
boot.binfmt.emulatedSystems = [
"aarch64-linux"
];
environment.systemPackages = with pkgs; [
ntfs3g
];
@@ -28,10 +36,6 @@
trusted-users = [ "me" ];
};
users.users.me.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFjgXf9S9hxjyph2EEFh1el0z4OUT9fMoFAaDanjiuKa me@main"
];
networking = {
#usePredictableInterfaceNames = false;
defaultGateway = {