From 76aff114b85211fefb8419a7e9162eda0a4318de Mon Sep 17 00:00:00 2001 From: iFargle Date: Thu, 13 Jul 2023 18:08:12 +0900 Subject: [PATCH] test --- configuration.nix | 4 ++-- hosts/nixos-laptop/configuration.nix | 4 ++-- users/albert/home.nix | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configuration.nix b/configuration.nix index 7ac78794..7b7d8767 100644 --- a/configuration.nix +++ b/configuration.nix @@ -18,8 +18,8 @@ ./modules/networking.nix # Initial Networking configs ]; - # Set your time zone. - time.timeZone = "Asia/Tokyo"; + # Allow unfree packages + nixpkgs.config.allowUnfree = true; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; diff --git a/hosts/nixos-laptop/configuration.nix b/hosts/nixos-laptop/configuration.nix index a58bbd3d..38cd021f 100644 --- a/hosts/nixos-laptop/configuration.nix +++ b/hosts/nixos-laptop/configuration.nix @@ -1,7 +1,7 @@ { lib, config, pkgs, ... }: { - # Allow unfree packages - nixpkgs.config.allowUnfree = true; + # Set your time zone. + time.timeZone = "Asia/Tokyo"; # Set the networking hostname: networking.hostName = "nixos-laptop"; diff --git a/users/albert/home.nix b/users/albert/home.nix index a2372d69..2e89b0c0 100644 --- a/users/albert/home.nix +++ b/users/albert/home.nix @@ -1,7 +1,7 @@ { config, pkgs, hostname, ... }: { home.stateVersion = "23.05"; imports = [ - ../../hosts/${hostname}/gnome-dconf.nix + # ../../hosts/${hostname}/gnome-dconf.nix ../../home-manager/git.nix ../../home-manager/neovim.nix ../../home-manager/bash.nix