aboutsummaryrefslogtreecommitdiffstats
path: root/flake
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-02-19 16:55:05 +0100
committerene <ene@sils.li>2023-02-19 16:56:15 +0100
commit48e02230c3860a589b41d302b4d2b13d57d55bde (patch)
tree32d3e8accb505ff0b9dacb36afbeb9d43b43659d /flake
parentFix(bootstrap): Finish the nix side of things (diff)
downloadnixos-config-48e02230c3860a589b41d302b4d2b13d57d55bde.zip
Fix(bootstrap): Declare dependencies
Diffstat (limited to '')
-rw-r--r--flake.lock17
-rw-r--r--flake.nix11
2 files changed, 24 insertions, 4 deletions
diff --git a/flake.lock b/flake.lock
index de8cf12a..39fa5dcc 100644
--- a/flake.lock
+++ b/flake.lock
@@ -189,6 +189,7 @@
"impermanence": "impermanence",
"neovim_config": "neovim_config",
"nixpkgs": "nixpkgs",
+ "shell-library": "shell-library",
"snap-sync": "snap-sync",
"strip_js_comments": "strip_js_comments",
"user_js": "user_js"
@@ -221,6 +222,22 @@
"type": "github"
}
},
+ "shell-library": {
+ "flake": false,
+ "locked": {
+ "lastModified": 1676821822,
+ "narHash": "sha256-zLJ9tKPVaPGne4uKqL63zgPle0UTdrWBXfB1oQUrAqo=",
+ "ref": "refs/heads/prime",
+ "rev": "7ec5e4d34173dfdd4b4425f7f7d3aef411f52a4a",
+ "revCount": 2,
+ "type": "git",
+ "url": "https://git.sils.li/ene/lib-sh.git"
+ },
+ "original": {
+ "type": "git",
+ "url": "https://git.sils.li/ene/lib-sh.git"
+ }
+ },
"snap-sync": {
"flake": false,
"locked": {
diff --git a/flake.nix b/flake.nix
index f2fc62d2..d6130388 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,12 +26,14 @@
url = "git+https://codeberg.org/ene/strip_js_comments.git";
inputs.nixpkgs.follows = "nixpkgs";
};
-
+ shell-library = {
+ url = "git+https://git.sils.li/ene/lib-sh.git";
+ flake = false;
+ };
user_js = {
url = "github:arkenfox/user.js";
flake = false;
};
-
snap-sync = {
url = "github:qubidt/snap-sync";
flake = false;
@@ -48,6 +50,7 @@
impermanence,
agenix,
snap-sync,
+ shell-library,
...
} @ inputs: {
nixosConfigurations.Tiamat = nixpkgs.lib.nixosSystem rec {
@@ -81,11 +84,11 @@
modules = [./hosts/spawn/configuration.nix];
};
- packages."x86_64-linux".default = import ./bootstrap {pkgs = nixpkgs.legacyPackages.x86_64-linux;};
+ packages."x86_64-linux".default = import ./bootstrap {pkgs = nixpkgs.legacyPackages.x86_64-linux; inherit shell-library;};
apps."x86_64-linux"."install" = {
type = "app";
- program = "${self.packages."x86_64-linux".default}";
+ program = "${self.packages."x86_64-linux".default}/bin/install";
};
apps."x86_64-linux".default = self.apps."x86_64-linux".install;
};