chore: simplify flake
This commit is contained in:
parent
d3717cae4b
commit
f0aa20544f
3 changed files with 35 additions and 63 deletions
36
flake.lock
generated
36
flake.lock
generated
|
@ -39,41 +39,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": "nixpkgs",
|
"nixpkgs": "nixpkgs",
|
||||||
"quickshell": "quickshell",
|
"quickshell": "quickshell"
|
||||||
"utils": "utils"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"systems": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1681028828,
|
|
||||||
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "nix-systems",
|
|
||||||
"repo": "default",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"utils": {
|
|
||||||
"inputs": {
|
|
||||||
"systems": "systems"
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1726560853,
|
|
||||||
"narHash": "sha256-X6rJYSESBVr3hBoH0WbKE5KvhPU5bloyZ2L4K60/fPQ=",
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"rev": "c1dfcf08411b08f6b8615f7d8971a2bfa81d5e8a",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "numtide",
|
|
||||||
"repo": "flake-utils",
|
|
||||||
"type": "github"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
46
flake.nix
46
flake.nix
|
@ -3,7 +3,6 @@
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||||
utils.url = "github:numtide/flake-utils";
|
|
||||||
|
|
||||||
quickshell = {
|
quickshell = {
|
||||||
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||||
|
@ -12,33 +11,24 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs =
|
||||||
{ nixpkgs, utils, ... }@inputs:
|
{ self, nixpkgs, ... }@inputs:
|
||||||
utils.lib.eachDefaultSystem (
|
let
|
||||||
system:
|
systems = [ "x86_64-linux" ];
|
||||||
let
|
forEachSystem = nixpkgs.lib.genAttrs systems;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgsForEach = nixpkgs.legacyPackages;
|
||||||
quickshell = inputs.quickshell.packages.${system}.default.override { withQMLLib = true; };
|
in
|
||||||
in
|
{
|
||||||
{
|
packages = forEachSystem (system: {
|
||||||
devShell = pkgs.mkShell {
|
default = self.packages.${system}.nysh;
|
||||||
buildInputs = [
|
nysh = pkgsForEach.${system}.callPackage ./nix/package.nix {
|
||||||
quickshell
|
quickshell = inputs.quickshell.packages.${system}.default;
|
||||||
pkgs.kdePackages.qtdeclarative
|
};
|
||||||
pkgs.pre-commit
|
});
|
||||||
pkgs.typos
|
|
||||||
|
|
||||||
];
|
devShells = forEachSystem (system: {
|
||||||
shellHook = ''
|
default = pkgsForEach.${system}.callPackage ./nix/shell.nix {
|
||||||
# Required for qmlls to find the correct type declarations
|
quickshell = inputs.quickshell.packages.${system}.default;
|
||||||
# Sadly Quickshell doesn't export some types declaratively
|
|
||||||
export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/
|
|
||||||
${pkgs.pre-commit}/bin/pre-commit install -f
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
defaultPackage = import ./nix/package.nix {
|
});
|
||||||
inherit (pkgs) stdenv;
|
};
|
||||||
inherit quickshell;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
16
nix/shell.nix
Normal file
16
nix/shell.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{ pkgs, quickshell, ... }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = [
|
||||||
|
quickshell
|
||||||
|
pkgs.kdePackages.qtdeclarative
|
||||||
|
pkgs.pre-commit
|
||||||
|
pkgs.typos
|
||||||
|
|
||||||
|
];
|
||||||
|
shellHook = ''
|
||||||
|
# Required for qmlls to find the correct type declarations
|
||||||
|
# Sadly Quickshell doesn't export some types declaratively
|
||||||
|
export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/
|
||||||
|
${pkgs.pre-commit}/bin/pre-commit install -f
|
||||||
|
'';
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue