test
This commit is contained in:
parent
ddd8751df6
commit
76aff114b8
3 changed files with 5 additions and 5 deletions
|
@ -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";
|
||||||
|
|
|
@ -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";
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue