diff --git a/flake.lock b/flake.lock index ca86d85..d702992 100644 --- a/flake.lock +++ b/flake.lock @@ -39,41 +39,7 @@ "root": { "inputs": { "nixpkgs": "nixpkgs", - "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" + "quickshell": "quickshell" } } }, diff --git a/flake.nix b/flake.nix index faec8ac..d61433e 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,6 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; - utils.url = "github:numtide/flake-utils"; quickshell = { url = "git+https://git.outfoxxed.me/outfoxxed/quickshell"; @@ -12,33 +11,24 @@ }; outputs = - { nixpkgs, utils, ... }@inputs: - utils.lib.eachDefaultSystem ( - system: - let - pkgs = nixpkgs.legacyPackages.${system}; - quickshell = inputs.quickshell.packages.${system}.default.override { withQMLLib = true; }; - in - { - devShell = pkgs.mkShell { - buildInputs = [ - quickshell - pkgs.kdePackages.qtdeclarative - pkgs.pre-commit - pkgs.typos + { self, nixpkgs, ... }@inputs: + let + systems = [ "x86_64-linux" ]; + forEachSystem = nixpkgs.lib.genAttrs systems; + pkgsForEach = nixpkgs.legacyPackages; + in + { + packages = forEachSystem (system: { + default = self.packages.${system}.nysh; + nysh = pkgsForEach.${system}.callPackage ./nix/package.nix { + quickshell = inputs.quickshell.packages.${system}.default; + }; + }); - ]; - 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 - ''; + devShells = forEachSystem (system: { + default = pkgsForEach.${system}.callPackage ./nix/shell.nix { + quickshell = inputs.quickshell.packages.${system}.default; }; - defaultPackage = import ./nix/package.nix { - inherit (pkgs) stdenv; - inherit quickshell; - }; - } - ); + }); + }; } diff --git a/nix/shell.nix b/nix/shell.nix new file mode 100644 index 0000000..da81a2c --- /dev/null +++ b/nix/shell.nix @@ -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 + ''; +}