diff options
| author | Grisha Shipunov | 2024-12-31 13:52:57 +0000 |
|---|---|---|
| committer | Grisha Shipunov | 2024-12-31 13:52:57 +0000 |
| commit | 50066a4d208b83e63d5ebb4bc64e740e78deae59 (patch) | |
| tree | b09004fb2121e2ffb4d46bb45ff65b024749d7e2 /flake.nix | |
| parent | 677abb734403d4f412dbbdc83f372cc606d9d519 (diff) | |
revert toaster
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -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"; |
