summaryrefslogblamecommitdiffstats
path: root/nixos/configuration.nix
blob: 26070d54097a9dbedac08580b13b104dcb534543 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                 









                                

                                               









                                                                                    
{ inputs, ...}: {
  imports = [
    ./hardware-configuration.nix
    ./packages.nix
    ./modules/bundle.nix
  ];

  disabledModules = [
    ./modules/xserver.nix
  ];

  nixpkgs.overlays = [ inputs.polymc.overlay ];

  networking.hostName = "nixos"; # Define your hostname.

  time.timeZone = "Asia/Tashkent"; # Set your time zone.

  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
}