fixup! removed useless imports

This commit is contained in:
2026-07-29 21:09:03 +01:00
parent e41b1261e7
commit a89c177165

View File

@@ -15,20 +15,17 @@
locale
];
in {
imports =
[
# /etc/nixos/hardware-configuration.nix
]
++ modules;
imports = modules;
services = {
openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
}
;
};
};
};
environment.systemPackages = with pkgs; [
vim
unzip
@@ -39,6 +36,7 @@
curlWithGnuTls
wget
];
system.stateVersion = "26.02";
};
}