diff options
author | sils <sils@sils.li> | 2023-11-23 22:09:11 +0100 |
---|---|---|
committer | sils <sils@sils.li> | 2023-11-23 22:09:11 +0100 |
commit | efbd23df77e2256babe2b1c415144a35ccc219b7 (patch) | |
tree | 0a0c906e77d30b80ccbb6b7f296a9142a081f273 | |
parent | feat(flake/packages): set neovim as default (diff) | |
download | nix-config-efbd23df77e2256babe2b1c415144a35ccc219b7.tar.gz nix-config-efbd23df77e2256babe2b1c415144a35ccc219b7.zip |
feat(flake): switch to remote systems input
This enables building this flake
-rw-r--r-- | flake.lock | 16 | ||||
-rw-r--r-- | flake.nix | 3 |
2 files changed, 10 insertions, 9 deletions
diff --git a/flake.lock b/flake.lock index 91ea5ee..314d4c1 100644 --- a/flake.lock +++ b/flake.lock @@ -1080,16 +1080,18 @@ } }, "systems_4": { - "flake": false, "locked": { - "lastModified": 1, - "narHash": "sha256-+N0PFsXEcGKKNf9f9bcysSVBMPnjM+C+JPL63ajpJbA=", - "path": "./flake/systems.nix", - "type": "path" + "lastModified": 1700773236, + "narHash": "sha256-yW1VEbKEYQwZfPKaHCORAS8JU08wQMKzPFkvXyDI/D8=", + "ref": "refs/heads/main", + "rev": "9feea5aa0fc207c17651c9e530fe78e82e15b74c", + "revCount": 2, + "type": "git", + "url": "https://codeberg.org/sils/systems" }, "original": { - "path": "./flake/systems.nix", - "type": "path" + "type": "git", + "url": "https://codeberg.org/sils/systems" } }, "utils": { diff --git a/flake.nix b/flake.nix index 031da76..58e0738 100644 --- a/flake.nix +++ b/flake.nix @@ -39,8 +39,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; systems = { - url = "path:./flake/systems.nix"; # evaluate for 32 and 64 Bit Linux - flake = false; + url = "git+https://codeberg.org/sils/systems"; # specify systems to evaluate }; sops-nix = { url = "github:Mic92/sops-nix"; |