sync: merge s0.sermc.net LXC configuration

- Add users.luochen570 user config
- Add nix substituters (Tsinghua mirror)
- Add nix experimental-features (nix-command, flakes)
- Set system.stateVersion to 25.05
This commit is contained in:
luochen570
2026-05-26 12:40:25 +08:00
parent c92c904e76
commit 33c7f0b6fd

View File

@@ -30,6 +30,12 @@
};
};
# 用户账户配置
users.users.luochen570 = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
};
security.sudo.wheelNeedsPassword = false;
services.resolved = {
@@ -39,4 +45,8 @@
'';
};
nix.settings.substituters = [ "https://mirrors.tuna.tsinghua.edu.cn/nix-channels/store" ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
system.stateVersion = "25.05";
}