From 5c08aff2a5097ba53db5d80b0c601c44e4de7954 Mon Sep 17 00:00:00 2001 From: "RingOfStorms (Josh)" Date: Tue, 9 Jul 2024 00:27:54 -0500 Subject: [PATCH] update --- flake.lock | 6 +++--- hosts/_common/configuration.nix | 12 +++++++++++- hosts/gpdPocket3/configuration.nix | 1 + hosts/joe/configuration.nix | 2 +- 4 files changed, 16 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 7457deb..292b9f7 100644 --- a/flake.lock +++ b/flake.lock @@ -223,11 +223,11 @@ }, "nixpkgs_joe": { "locked": { - "lastModified": 1718714799, - "narHash": "sha256-FUZpz9rg3gL8NVPKbqU8ei1VkPLsTIfAJ2fdAf5qjak=", + "lastModified": 1720031269, + "narHash": "sha256-rwz8NJZV+387rnWpTYcXaRNvzUSnnF9aHONoJIYmiUQ=", "owner": "nixos", "repo": "nixpkgs", - "rev": "c00d587b1a1afbf200b1d8f0b0e4ba9deb1c7f0e", + "rev": "9f4128e00b0ae8ec65918efeba59db998750ead6", "type": "github" }, "original": { diff --git a/hosts/_common/configuration.nix b/hosts/_common/configuration.nix index 99aadaf..f6cdadd 100644 --- a/hosts/_common/configuration.nix +++ b/hosts/_common/configuration.nix @@ -28,7 +28,17 @@ in # ========== # Common # ========== - networking.hostName = settings.system.hostname; + networking = { + hostName = settings.system.hostname; + extraHosts = '' + 127.0.0.1 local.belljm.com + 127.0.0.1 n0.local.belljm.com + 127.0.0.1 n1.local.belljm.com + 127.0.0.1 n2.local.belljm.com + 127.0.0.1 n3.local.belljm.com + 127.0.0.1 n4.local.belljm.com + ''; + }; # TODO do I want this dynamic at all? Roaming? time.timeZone = "America/Chicago"; diff --git a/hosts/gpdPocket3/configuration.nix b/hosts/gpdPocket3/configuration.nix index 1dd4337..1e055b0 100644 --- a/hosts/gpdPocket3/configuration.nix +++ b/hosts/gpdPocket3/configuration.nix @@ -18,6 +18,7 @@ (settings.hostsDir + "/_common/components/gnome_wayland.nix") (settings.hostsDir + "/_common/components/docker.nix") (settings.hostsDir + "/_common/components/nebula.nix") + (settings.hostsDir + "/_common/components/yggdrasil.nix") # Users this machine has (settings.usersDir + "/root/configuration.nix") (settings.usersDir + "/josh/configuration.nix") diff --git a/hosts/joe/configuration.nix b/hosts/joe/configuration.nix index f9422b4..1a84799 100644 --- a/hosts/joe/configuration.nix +++ b/hosts/joe/configuration.nix @@ -40,7 +40,7 @@ # Enable OpenGL hardware.opengl = { enable = true; - driSupport = true; + # driSupport = true; driSupport32Bit = true; };