configuration.nix/hosts/rico/default.nix

33 lines
760 B
Nix
Raw Normal View History

2023-05-18 16:11:26 +05:30
{...}: {
2023-04-10 23:07:41 +05:30
imports = [
./hardware
2023-04-10 23:23:52 +05:30
./programs
./services
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
networking.hostName = "Rico2";
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-05-18 16:11:26 +05:30
supportedLocales = ["en_US.UTF-8/UTF-8"];
2023-04-10 23:07:41 +05:30
};
time.timeZone = "Asia/Kolkata";
system.stateVersion = "23.05";
}