mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-31 18:09:15 +01:00
3230a5ec1e
This makes it easier to auto-complete home/ and hardware/ with tab, versus having to type 3 letters to auto-complete hosts/.
12 lines
338 B
Nix
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";
|
|
}
|