diff options
author | Fernando Ayats <[email protected]> | 2022-05-17 14:03:58 +0200 |
---|---|---|
committer | Fernando Ayats <[email protected]> | 2022-05-17 14:03:58 +0200 |
commit | c7dc0fd50986a353a814cd65360a8ee17c5186a0 (patch) | |
tree | 9e98dbe8673581b7c341050ef1fdec6c9bfd530f | |
parent | c02e1635918c670d2ccd31e7e88f58bfed31cbf9 (diff) | |
download | Hyprland-c7dc0fd50986a353a814cd65360a8ee17c5186a0.tar.gz Hyprland-c7dc0fd50986a353a814cd65360a8ee17c5186a0.zip |
nix: misc tweaks to flake
-rw-r--r-- | flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -23,6 +23,7 @@ in { packages = genSystems (system: { wlroots = pkgsFor.${system}.wlroots.overrideAttrs (prev: { + version = inputs.wlroots.lastModifiedDate; src = inputs.wlroots; }); default = pkgsFor.${system}.callPackage ./default.nix { @@ -30,5 +31,8 @@ inherit (self.packages.${system}) wlroots; }; }); + formatter = genSystems (system: pkgsFor.${system}.alejandra); + # TODO Provide a nixos module for easy installation + # nixosModules.default = import ./module.nix; }; } |