readme_fix3
This commit is contained in:
parent
d0b7ccf302
commit
6c4b495a75
1 changed files with 4 additions and 6 deletions
10
README.md
10
README.md
|
|
@ -147,6 +147,7 @@ Alternatively, you can add it to your NixOS configuration or flake:
|
||||||
noctalia = {
|
noctalia = {
|
||||||
url = "github:noctalia-dev/noctalia-shell";
|
url = "github:noctalia-dev/noctalia-shell";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
inputs.quickshell.follows = "quickshell"
|
||||||
};
|
};
|
||||||
|
|
||||||
quickshell = {
|
quickshell = {
|
||||||
|
|
@ -156,10 +157,7 @@ Alternatively, you can add it to your NixOS configuration or flake:
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue