From 6c4b495a758894250c733ef0ac1623c4ff41da54 Mon Sep 17 00:00:00 2001 From: wer-zen Date: Thu, 28 Aug 2025 16:53:34 +0200 Subject: [PATCH 1/3] 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 ]; } ``` From d57092feae7c2809660fa5a724e215d3968e4a87 Mon Sep 17 00:00:00 2001 From: wer-zen Date: Thu, 28 Aug 2025 16:54:08 +0200 Subject: [PATCH 2/3] readme_fix3 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14ccde6..6647ffa 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ Features a modern modular architecture with a status bar, notification system, c - `gpu-screen-recorder` - Screen recording functionality - `brightnessctl` - For internal/laptop monitor brightness - `ddcutil` - For desktop monitor brightness (might introduce some system instability with certain monitors) +- `xdg-desktop-portal-gnome` - Desktop integration (or alternative portal) ### Optional @@ -78,7 +79,6 @@ Features a modern modular architecture with a status bar, notification system, c - `swww` - Wallpaper animations and effects - `matugen` - Material You color scheme generation - `cava` - Audio visualizer component -- `wlsunset` - To be able to use NightLight > There are 2 more optional dependencies. > Any `polkit agent` to be able to use the ArchUpdater widget. From 92b24c6eb2aa2299987f8dc0d28a78df0c126e37 Mon Sep 17 00:00:00 2001 From: wer-zen Date: Thu, 28 Aug 2025 16:59:36 +0200 Subject: [PATCH 3/3] readme_fix4 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6647ffa..518cc87 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,6 @@ Features a modern modular architecture with a status bar, notification system, c - `gpu-screen-recorder` - Screen recording functionality - `brightnessctl` - For internal/laptop monitor brightness - `ddcutil` - For desktop monitor brightness (might introduce some system instability with certain monitors) -- `xdg-desktop-portal-gnome` - Desktop integration (or alternative portal) ### Optional @@ -79,6 +78,7 @@ Features a modern modular architecture with a status bar, notification system, c - `swww` - Wallpaper animations and effects - `matugen` - Material You color scheme generation - `cava` - Audio visualizer component +- `wlsunset` - To be able to use NightLight > There are 2 more optional dependencies. > Any `polkit agent` to be able to use the ArchUpdater widget. @@ -147,17 +147,17 @@ 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 = { url = "github:outfoxxed/quickshell"; inputs.nixpkgs.follows = "nixpkgs"; + inputs.quickshell.follows = "quickshell" }; }; outputs = { self, nixpkgs, noctalia, quickshell, ... }: - { + { nixosConfigurations.my-host = nixpkgs.lib.nixosSystem { modules = [ ./configuration.nix