-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
30 lines (30 loc) · 854 Bytes
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
description = " Hyprland utility that automates vibrance and night light control ";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
systems.url = "github:nix-systems/default-linux";
};
outputs = {
self,
nixpkgs,
systems,
}: let
forAllSystems = nixpkgs.lib.genAttrs (import systems);
pkgsFor = nixpkgs.legacyPackages;
in {
packages = forAllSystems (system: {
default = pkgsFor.${system}.callPackage ./nix/. {};
});
devShells = forAllSystems (system: {
default = pkgsFor.${system}.callPackage ./shell.nix {};
});
nixosModules = {
hyprlux = import ./nix/module.nix self;
default = self.nixosModules.hyprlux;
};
homeManagerModules = {
hyprlux = import ./nix/hm-module.nix self;
default = self.homeManagerModules.hyprlux;
};
};
}