From a2886940f48f84f90278635610e7118247584f5b Mon Sep 17 00:00:00 2001 From: Donovan Glover Date: Mon, 12 Jun 2023 13:26:36 -0400 Subject: [PATCH] nix: Move hosts to src Might change this later once home-manager and nixos modules are separated. --- {hosts => src}/laptop.nix | 0 src/variables.nix | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename {hosts => src}/laptop.nix (100%) diff --git a/hosts/laptop.nix b/src/laptop.nix similarity index 100% rename from hosts/laptop.nix rename to src/laptop.nix diff --git a/src/variables.nix b/src/variables.nix index 6e78491..5992ff9 100644 --- a/src/variables.nix +++ b/src/variables.nix @@ -2,7 +2,7 @@ hostname = "nixos"; system = "x86_64-linux"; timezone = "America/New_York"; - hostHardwareConfiguration = ../hosts/laptop.nix; + hostHardwareConfiguration = ./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" ];