Nix-Hyprland/nixos/configuration.nix

22 lines
501 B
Nix
Raw Normal View History

2024-04-16 20:52:14 -04:00
{
imports = [
./hardware-configuration.nix
./packages.nix
./modules/bundle.nix
];
disabledModules = [
./modules/xserver.nix
];
2024-05-21 06:37:47 -04:00
networking.hostName = "nixos-c940"; # Define your hostname.
2024-04-16 20:52:14 -04:00
2024-05-21 06:37:47 -04:00
time.timeZone = "America/New_York"; # Set your time zone.
2024-04-16 20:52:14 -04:00
i18n.defaultLocale = "en_US.UTF-8"; # Select internationalisation properties.
nix.settings.experimental-features = [ "nix-command" "flakes" ]; # Enabling flakes
system.stateVersion = "23.05"; # Don't change it bro
}