summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2024-12-31 13:52:57 +0000
committerGrisha Shipunov2024-12-31 13:52:57 +0000
commit50066a4d208b83e63d5ebb4bc64e740e78deae59 (patch)
treeb09004fb2121e2ffb4d46bb45ff65b024749d7e2 /flake.nix
parent677abb734403d4f412dbbdc83f372cc606d9d519 (diff)
revert toaster
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 406b568..ecffdfd 100644
--- a/flake.nix
+++ b/flake.nix
@@ -32,7 +32,22 @@
, ...
}:
+ flake-utils.lib.eachDefaultSystem
+ (system:
+ let
+ pkgs = nixpkgs.legacyPackages.${system};
+ in
+ {
+ packages.slick = pkgs.callPackage "${self}/pkgs/slick.nix" { };
+ # packages.imhex = pkgs.libsForQt5.callPackage "${self}/pkgs/imhex.nix" { };
+ })
+ //
{
+ overlays.default = _final: prev: {
+ inherit (self.packages.${prev.system})
+ slick;
+ };
+
nixosConfigurations = {
cirrus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";