From 0df7a4da6fd576d559fba4136ac2c61296e7a66f Mon Sep 17 00:00:00 2001 From: tootbrute Date: Sun, 5 Jan 2025 08:24:47 +0800 Subject: [PATCH] Update NixOS config. --- nixosModules/base.nix => base.nix | 0 flake.lock | 6 +++--- flake.nix | 7 ++++--- nixosModules/fonts.nix => fonts.nix | 0 nixosModules/gnome.nix => gnome.nix | 0 nixosModules/systemd.nix => systemd.nix | 0 6 files changed, 7 insertions(+), 6 deletions(-) rename nixosModules/base.nix => base.nix (100%) rename nixosModules/fonts.nix => fonts.nix (100%) rename nixosModules/gnome.nix => gnome.nix (100%) rename nixosModules/systemd.nix => systemd.nix (100%) diff --git a/nixosModules/base.nix b/base.nix similarity index 100% rename from nixosModules/base.nix rename to base.nix diff --git a/flake.lock b/flake.lock index 58c3e85..5d32ddd 100644 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1735947440, - "narHash": "sha256-jnEcfmOhWntmVEcqlvs+j532+mvmgsKtQSSfukgkn+A=", + "lastModified": 1736013363, + "narHash": "sha256-P4lsS2Y5GzBfC8OfXtD/xWEucX6oHGTjOzjEjEJbXfc=", "owner": "nix-community", "repo": "home-manager", - "rev": "a9987622b7b93c82e147f198574e8e6ffbf5e327", + "rev": "0d7908bd09165db6699908b7e3970f137327cbf0", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index b1ca714..9a52ff9 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ greynix = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./nixosModules/base.nix + ./base.nix ./hosts/greynix/configuration.nix home-manager.nixosModules.home-manager @@ -32,7 +32,7 @@ bluenix = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./nixosModules/base.nix + ./base.nix ./hosts/bluenix/configuration.nix home-manager.nixosModules.home-manager @@ -48,10 +48,11 @@ }; # close bluenix # aspirenix - Grey Acer Aspire machine + # low spec machine - need to figure out how to change this config a bit aspirenix = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./nixosModules/base.nix + ./base.nix ./hosts/aspirenix/configuration.nix home-manager.nixosModules.home-manager diff --git a/nixosModules/fonts.nix b/fonts.nix similarity index 100% rename from nixosModules/fonts.nix rename to fonts.nix diff --git a/nixosModules/gnome.nix b/gnome.nix similarity index 100% rename from nixosModules/gnome.nix rename to gnome.nix diff --git a/nixosModules/systemd.nix b/systemd.nix similarity index 100% rename from nixosModules/systemd.nix rename to systemd.nix