configuration.nix/hosts/rico2/default.nix

34 lines
766 B
Nix
Raw Normal View History

2023-11-04 16:12:45 +05:30
{ ... }: {
2023-04-10 23:07:41 +05:30
imports = [
./hardware
2023-04-10 23:23:52 +05:30
./programs
./services
2023-06-02 12:45:51 +05:30
./containers
2023-08-19 23:20:07 +05:30
./network.nix
2023-04-10 23:40:31 +05:30
./security.nix
2023-04-10 23:07:41 +05:30
];
2023-04-15 22:35:39 +05:30
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2023-04-10 23:07:41 +05:30
i18n = {
defaultLocale = "en_US.UTF-8";
extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
LC_ALL = "en_US.UTF-8";
};
2023-11-04 16:12:45 +05:30
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
2023-04-10 23:07:41 +05:30
};
time.timeZone = "Asia/Kolkata";
2023-06-02 11:28:54 +05:30
system.stateVersion = "23.11";
2023-04-10 23:07:41 +05:30
}