Merge pull request #162 from wer-zen/main

Another Readme Fix
This commit is contained in:
Lysec 2025-08-28 17:01:55 +02:00 committed by GitHub
commit a699cfb958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -152,14 +152,12 @@ Alternatively, you can add it to your NixOS configuration or flake:
quickshell = { quickshell = {
url = "github:outfoxxed/quickshell"; url = "github:outfoxxed/quickshell";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
inputs.quickshell.follows = "quickshell"
}; };
}; };
outputs = { self, nixpkgs, noctalia, quickshell, ... }: outputs = { self, nixpkgs, noctalia, quickshell, ... }:
let {
system = "x86_64-linux";
pkgs = import nixpkgs { inherit system; };
in {
nixosConfigurations.my-host = nixpkgs.lib.nixosSystem { nixosConfigurations.my-host = nixpkgs.lib.nixosSystem {
modules = [ modules = [
./configuration.nix ./configuration.nix
@ -173,8 +171,8 @@ Alternatively, you can add it to your NixOS configuration or flake:
```nix ```nix
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
noctalia.packages.${system}.default inputs.noctalia.packages.${system}.default
quickshell.packages.${system}.default inputs.quickshell.packages.${system}.default
]; ];
} }
``` ```