From 6c4b495a758894250c733ef0ac1623c4ff41da54 Mon Sep 17 00:00:00 2001 From: wer-zen Date: Thu, 28 Aug 2025 16:53:34 +0200 Subject: [PATCH] readme_fix3 --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 916b2f5..14ccde6 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,7 @@ Alternatively, you can add it to your NixOS configuration or flake: noctalia = { url = "github:noctalia-dev/noctalia-shell"; inputs.nixpkgs.follows = "nixpkgs"; + inputs.quickshell.follows = "quickshell" }; quickshell = { @@ -156,10 +157,7 @@ Alternatively, you can add it to your NixOS configuration or flake: }; outputs = { self, nixpkgs, noctalia, quickshell, ... }: - let - system = "x86_64-linux"; - pkgs = import nixpkgs { inherit system; }; - in { + { nixosConfigurations.my-host = nixpkgs.lib.nixosSystem { modules = [ ./configuration.nix @@ -173,8 +171,8 @@ Alternatively, you can add it to your NixOS configuration or flake: ```nix { environment.systemPackages = with pkgs; [ - noctalia.packages.${system}.default - quickshell.packages.${system}.default + inputs.noctalia.packages.${system}.default + inputs.quickshell.packages.${system}.default ]; } ```