summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-03-25 16:57:48 -0400
committerseth <[email protected]>2023-03-25 16:57:48 -0400
commit986ba6872c715750e76b1024e6a4b763cde6cca4 (patch)
tree4cbe97b2dff73c8a9dcae1544c32ddcc708b0f47 /flake.nix
parent08224d0cda2374648cfe4e8400f5f6643be06751 (diff)
init: swhkd
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index b8b5c78..2302800 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,7 +20,7 @@
pre-commit-hooks,
...
}: let
- supportedSystsems = with utils.lib.system; [
+ supportedSystems = with utils.lib.system; [
x86_64-linux
x86_64-darwin
aarch64-linux
@@ -31,12 +31,13 @@
treefetch = callPackage ./pkgs/treefetch.nix {inherit naersk;};
material-color-utilities = callPackage ./pkgs/material-color-utilities.nix {};
gradience = callPackage ./pkgs/gradience.nix {inherit material-color-utilities;};
+ swhkd = callPackage ./pkgs/swhkd.nix {inherit naersk;};
};
overrides = prev: {
discord-canary = import ./pkgs/discord-canary.nix prev;
};
in
- utils.lib.eachSystem supportedSystsems (system: let
+ utils.lib.eachSystem supportedSystems (system: let
pkgs = import nixpkgs {inherit system;};
in {
checks = {