Merge pull request #1974 from bokicoder/main

update flake to use noctalia-qs
This commit is contained in:
Lemmy
2026-02-25 11:43:23 -05:00
committed by GitHub
2 changed files with 32 additions and 2 deletions
Generated
+22 -1
View File
@@ -16,9 +16,30 @@
"type": "github"
}
},
"noctalia-qs": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1771796397,
"narHash": "sha256-lbZkAMNQl5Ymqhdvp46K8hubZ7n7KQRPnTP5bNJzMSk=",
"owner": "noctalia-dev",
"repo": "noctalia-qs",
"rev": "1711c5a20b74a31b703394164c5d2d9561f13ee9",
"type": "github"
},
"original": {
"owner": "noctalia-dev",
"repo": "noctalia-qs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
"nixpkgs": "nixpkgs",
"noctalia-qs": "noctalia-qs"
}
}
},
+10 -1
View File
@@ -3,18 +3,27 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
noctalia-qs = {
url = "github:noctalia-dev/noctalia-qs";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
noctalia-qs,
...
}:
let
eachSystem = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.linux;
pkgsFor = eachSystem (
system: nixpkgs.legacyPackages.${system}.appendOverlays [ self.overlays.default ]
system:
nixpkgs.legacyPackages.${system}.appendOverlays [
self.overlays.default
noctalia-qs.overlays.default
]
);
in
{