alright, figured out the build command I need

also removed the justfile for now, will take a look at that again in the future, less dependencies for now
This commit is contained in:
Chris Kruining 2025-07-31 20:25:28 +02:00
parent 0f2f2a09f0
commit 700fe012a1
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
5 changed files with 64 additions and 37 deletions

View file

@ -10,7 +10,7 @@ in
};
networking = {
wireless.enable = true;
wireless.enable = mkForce false;
networkmanager.enable = true;
};
@ -35,16 +35,17 @@ in
};
services = {
ssh.enable = true;
qemuGuest.enable = true;
openssh.settings.PermitRootLogin = mkForce "yes";
openssh = {
enable = true;
settings.PermitRootLogin = mkForce "yes";
};
};
system.locale.enable = true;
user = {
name = "nixos";
users.users.nixos = {
initialPassword = "kaas";
initialHashedPassword = mkForce null;
extraGroups = [ "networkmanager" ];
};
environment.systemPackages = with pkgs; [