1
0
Fork 0
nix-configuration/modules/base/system.nix

55 lines
1.2 KiB
Nix
Raw Normal View History

2024-02-29 09:53:34 -05:00
# System options
2024-05-01 21:10:26 -04:00
{ pkgs, config, ... }: {
# Set up the environment
environment = {
# Install base packages
systemPackages = with pkgs; [
bash
dconf # Needed to fix an issue with Home-manager. See https://github.com/nix-community/home-manager/issues/3113
direnv
git
home-manager
nano
p7zip
fastfetch
nh # Nix Helper: https://github.com/viperML/nh
];
variables = {
EDITOR = "nano"; # Set default editor to nano
2024-02-29 09:53:34 -05:00
};
2024-05-01 21:10:26 -04:00
};
2024-02-29 09:53:34 -05:00
2024-05-01 21:10:26 -04:00
# Configure automatic updates
system.autoUpgrade = {
enable = true;
flake = "${config.users.users.aires.home}/Development/nix-configuration";
dates = "daily";
allowReboot = false;
operation = "boot"; # Don't switch, just create a boot entry
};
2024-04-20 01:01:17 -04:00
2024-05-01 21:10:26 -04:00
# Enable fwupd (firmware updater)
services.fwupd.enable = true;
# Set your time zone.
time.timeZone = "America/New_York";
# Select internationalisation properties.
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";
2024-02-29 09:53:34 -05:00
};
};
}