blob: ba29071d6753bdf98bab6a1bc6746038e79fb24b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{ ... }:
{
imports = [
./hardware-configuration.nix
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "my-vps";
networking.domain = "";
users.users.administrator = {
isNormalUser = true;
password = "admin";
extraGroups = [ "wheel" ];
};
services.openssh = {
enable = true;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.05";
}
|