chore: simplify flake
This commit is contained in:
parent
f4f3b0714a
commit
34f99e0165
1 changed files with 4 additions and 13 deletions
17
flake.nix
17
flake.nix
|
@ -12,27 +12,18 @@
|
|||
};
|
||||
|
||||
outputs =
|
||||
{
|
||||
nixpkgs,
|
||||
utils,
|
||||
quickshell,
|
||||
...
|
||||
}:
|
||||
{ nixpkgs, utils, ... }@inputs:
|
||||
utils.lib.eachDefaultSystem (
|
||||
system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
quickshell = inputs.quickshell.packages.${system}.default;
|
||||
in
|
||||
{
|
||||
devShell = pkgs.mkShell {
|
||||
buildInputs = [
|
||||
quickshell.packages.${system}.default
|
||||
pkgs.kdePackages.qtdeclarative
|
||||
];
|
||||
};
|
||||
devShell = pkgs.mkShell { buildInputs = [ quickshell ]; };
|
||||
defaultPackage = import ./nix/package.nix {
|
||||
inherit (pkgs) stdenv;
|
||||
quickshell = quickshell.packages.${system}.default;
|
||||
inherit quickshell;
|
||||
};
|
||||
}
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue