diff options
author | Soispha <soispha@vhack.eu> | 2023-04-17 20:07:25 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-05-09 19:31:03 +0200 |
commit | b2bdd9c853453121c5fb4fa4455f81b67c4c8c11 (patch) | |
tree | 0af6e6df100afce7df5c8d69b6c396b82b62e442 /flake.nix | |
parent | Feat(hm/conf/firefox): Add video-pauser extension (diff) | |
download | nixos-config-b2bdd9c853453121c5fb4fa4455f81b67c4c8c11.tar.gz nixos-config-b2bdd9c853453121c5fb4fa4455f81b67c4c8c11.zip |
Chore(flake): Update and only for x86_64-linux
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index ab5751ed..aaf47b28 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,9 @@ }; # inputs for following + systems = { + url = "github:nix-systems/x86_64-linux"; # only evaluate for this system + }; flake-compat = { url = "github:edolstra/flake-compat"; flake = false; @@ -29,6 +32,7 @@ flake-utils = { url = "github:numtide/flake-utils"; inputs = { + systems.follows = "systems"; }; }; @@ -36,7 +40,7 @@ url = "github:oxalica/rust-overlay"; inputs = { nixpkgs.follows = "nixpkgs"; - flake-utils.follows = "flake-utils"; + systems.follows = "systems"; }; }; |