nix-config/src/variables.nix
Donovan Glover 3230a5ec1e
meta: Use hardware directory for hardware configs
This makes it easier to auto-complete home/ and hardware/ with tab,
versus having to type 3 letters to auto-complete hosts/.
2023-06-22 07:57:00 -04:00

12 lines
338 B
Nix

{
hostname = "nixos";
system = "x86_64-linux";
timezone = "America/New_York";
hostHardwareConfiguration = ../hardware/laptop.nix;
stateVersion = "22.11";
defaultLocale = "ja_JP.UTF-8";
supportedLocales = [ "ja_JP.UTF-8/UTF-8" "en_US.UTF-8/UTF-8" "fr_FR.UTF-8/UTF-8" ];
username = "user";
defaultBrowser = "librewolf";
}