37 lines
618 B
Nix
37 lines
618 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
|
|
../modules/services/ddns-go.nix
|
|
../modules/services/napcat.nix
|
|
../modules/services/nignx.nix
|
|
../modules/services/gitea.nix
|
|
|
|
../modules/system/boot.nix
|
|
../modules/system/networking.nix
|
|
../modules/system/nix.nix
|
|
|
|
../modules/programs/bash
|
|
../modules/programs/tools.nix
|
|
];
|
|
|
|
time.timeZone = "Aisa/Shanghai";
|
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
users.users.sky = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" ];
|
|
packages = with pkgs; [
|
|
tree
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "25.11";
|
|
}
|