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