From b8b9d16f8c2e72d0c1265d4ff7e386bc33f97099 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Wed, 16 Oct 2024 18:56:56 +0200 Subject: [PATCH] add hints for changeme comments --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 7c09b8c..28d693f 100644 --- a/flake.nix +++ b/flake.nix @@ -41,7 +41,7 @@ outputs = inputs@{ nixpkgs, ... }: { nixosConfigurations = { - nixy = # CHANGEME + nixy = # CHANGEME: This should match the 'hostname' in your variables.nix file nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ @@ -49,10 +49,10 @@ nixpkgs.overlays = [ inputs.hyprpanel.overlay ]; _module.args = { inherit inputs; }; } - inputs.nixos-hardware.nixosModules.omen-16-n0005ne # CHANGEME + inputs.nixos-hardware.nixosModules.omen-16-n0005ne # CHANGEME: check https://github.com/NixOS/nixos-hardware inputs.home-manager.nixosModules.home-manager inputs.stylix.nixosModules.stylix - ./hosts/laptop/configuration.nix # CHANGEME + ./hosts/laptop/configuration.nix # CHANGEME: change the path to match your host folder ]; }; };