This commit is contained in:
iFargle 2023-07-13 18:08:12 +09:00
parent ddd8751df6
commit 76aff114b8
3 changed files with 5 additions and 5 deletions

View file

@ -18,8 +18,8 @@
./modules/networking.nix # Initial Networking configs ./modules/networking.nix # Initial Networking configs
]; ];
# Set your time zone. # Allow unfree packages
time.timeZone = "Asia/Tokyo"; nixpkgs.config.allowUnfree = true;
# Select internationalisation properties. # Select internationalisation properties.
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";

View file

@ -1,7 +1,7 @@
{ lib, config, pkgs, ... }: { { lib, config, pkgs, ... }: {
# Allow unfree packages # Set your time zone.
nixpkgs.config.allowUnfree = true; time.timeZone = "Asia/Tokyo";
# Set the networking hostname: # Set the networking hostname:
networking.hostName = "nixos-laptop"; networking.hostName = "nixos-laptop";

View file

@ -1,7 +1,7 @@
{ config, pkgs, hostname, ... }: { { config, pkgs, hostname, ... }: {
home.stateVersion = "23.05"; home.stateVersion = "23.05";
imports = [ imports = [
../../hosts/${hostname}/gnome-dconf.nix # ../../hosts/${hostname}/gnome-dconf.nix
../../home-manager/git.nix ../../home-manager/git.nix
../../home-manager/neovim.nix ../../home-manager/neovim.nix
../../home-manager/bash.nix ../../home-manager/bash.nix