Tweaking flake

This commit is contained in:
Gabriel Simmer 2023-04-24 18:15:19 +01:00
parent 8912de7030
commit 56afe0e5b3
Signed by: arch
GPG key ID: C81B106D46C5B875
2 changed files with 17 additions and 7 deletions

View file

@ -93,7 +93,9 @@
}, },
"flake-utils_2": { "flake-utils_2": {
"inputs": { "inputs": {
"systems": "systems" "systems": [
"systems"
]
}, },
"locked": { "locked": {
"lastModified": 1681202837, "lastModified": 1681202837,
@ -131,7 +133,8 @@
"crane": "crane", "crane": "crane",
"fenix": "fenix", "fenix": "fenix",
"flake-utils": "flake-utils_2", "flake-utils": "flake-utils_2",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"systems": "systems"
} }
}, },
"rust-overlay": { "rust-overlay": {
@ -161,16 +164,16 @@
}, },
"systems": { "systems": {
"locked": { "locked": {
"lastModified": 1681028828, "lastModified": 1680978846,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", "narHash": "sha256-Gtqg8b/v49BFDpDetjclCYXm8mAnTrUzR0JnE2nv5aw=",
"owner": "nix-systems", "owner": "nix-systems",
"repo": "default", "repo": "x86_64-linux",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "rev": "2ecfcac5e15790ba6ce360ceccddb15ad16d08a8",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-systems", "owner": "nix-systems",
"repo": "default", "repo": "x86_64-linux",
"type": "github" "type": "github"
} }
} }

View file

@ -21,6 +21,8 @@
url = "github:rustsec/advisory-db"; url = "github:rustsec/advisory-db";
flake = false; flake = false;
}; };
systems.url = "github:nix-systems/x86_64-linux";
flake-utils.inputs.systems.follows = "systems";
}; };
outputs = { self, nixpkgs, crane, fenix, flake-utils, advisory-db, ... }: outputs = { self, nixpkgs, crane, fenix, flake-utils, advisory-db, ... }:
@ -139,6 +141,11 @@
cargo cargo
rustc rustc
rust-analyzer rust-analyzer
hut
pkg-config
xorg.libX11
xorg.libXtst
libinput
]; ];
}; };
}); });