aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFernando Ayats <[email protected]>2022-05-17 14:03:58 +0200
committerFernando Ayats <[email protected]>2022-05-17 14:03:58 +0200
commitc7dc0fd50986a353a814cd65360a8ee17c5186a0 (patch)
tree9e98dbe8673581b7c341050ef1fdec6c9bfd530f
parentc02e1635918c670d2ccd31e7e88f58bfed31cbf9 (diff)
downloadHyprland-c7dc0fd50986a353a814cd65360a8ee17c5186a0.tar.gz
Hyprland-c7dc0fd50986a353a814cd65360a8ee17c5186a0.zip
nix: misc tweaks to flake
-rw-r--r--flake.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 1102d007..506b89bb 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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;
};
}