diff --git a/.gitignore b/.gitignore
index 7b9fe24..549a6cf 100755
--- a/.gitignore
+++ b/.gitignore
@@ -9,3 +9,4 @@ wg/
opensuse/
modules/opensuse/
/*.qcow2
+Ran.ca
diff --git a/flake.lock b/flake.lock
index 32184f8..9ee307a 100644
--- a/flake.lock
+++ b/flake.lock
@@ -776,6 +776,22 @@
"type": "github"
}
},
+ "nixpkgs_10": {
+ "locked": {
+ "lastModified": 1731763621,
+ "narHash": "sha256-ddcX4lQL0X05AYkrkV2LMFgGdRvgap7Ho8kgon3iWZk=",
+ "owner": "NixOS",
+ "repo": "nixpkgs",
+ "rev": "c69a9bffbecde46b4b939465422ddc59493d3e4d",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NixOS",
+ "ref": "nixpkgs-unstable",
+ "repo": "nixpkgs",
+ "type": "github"
+ }
+ },
"nixpkgs_2": {
"locked": {
"lastModified": 1702539185,
@@ -890,20 +906,38 @@
},
"nixpkgs_9": {
"locked": {
- "lastModified": 1731763621,
- "narHash": "sha256-ddcX4lQL0X05AYkrkV2LMFgGdRvgap7Ho8kgon3iWZk=",
- "owner": "NixOS",
+ "lastModified": 1734119587,
+ "narHash": "sha256-AKU6qqskl0yf2+JdRdD0cfxX4b9x3KKV5RqA6wijmPM=",
+ "owner": "nixos",
"repo": "nixpkgs",
- "rev": "c69a9bffbecde46b4b939465422ddc59493d3e4d",
+ "rev": "3566ab7246670a43abd2ffa913cc62dad9cdf7d5",
"type": "github"
},
"original": {
- "owner": "NixOS",
- "ref": "nixpkgs-unstable",
+ "owner": "nixos",
+ "ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
+ "ooye": {
+ "inputs": {
+ "nixpkgs": "nixpkgs_9"
+ },
+ "locked": {
+ "lastModified": 1734707011,
+ "narHash": "sha256-17rrfpTeUKoCWJEFd/cNjCS/zohVPijjFZvPXqczx4o=",
+ "ref": "refs/heads/master",
+ "rev": "aea0001eaa90d38d5692b206395edbd294d263dd",
+ "revCount": 5,
+ "type": "git",
+ "url": "https://cgit.rory.gay/nix/OOYE-module.git"
+ },
+ "original": {
+ "type": "git",
+ "url": "https://cgit.rory.gay/nix/OOYE-module.git"
+ }
+ },
"rocksdb": {
"flake": false,
"locked": {
@@ -939,6 +973,7 @@
"nixpkgs-keydb": "nixpkgs-keydb",
"nixpkgs-master": "nixpkgs-master",
"nixpkgs-stable": "nixpkgs-stable_3",
+ "ooye": "ooye",
"sops-nix": "sops-nix"
}
},
@@ -990,7 +1025,7 @@
},
"sops-nix": {
"inputs": {
- "nixpkgs": "nixpkgs_9"
+ "nixpkgs": "nixpkgs_10"
},
"locked": {
"lastModified": 1733785344,
diff --git a/flake.nix b/flake.nix
index a20f85f..e18be24 100755
--- a/flake.nix
+++ b/flake.nix
@@ -47,11 +47,15 @@
inputs.nixpkgs.follows = "nixpkgs";
};
- # Own projects
+ # Own projects/custom modules
botcore-v4 = {
url = "gitlab:BotCore-Devs/BotCore-v4/staging";
#inputs.nixpkgs.follows = "nixpkgs-RoryNix"; # We need this to avoid a LIBC error.
};
+
+ ooye = {
+ url = "git+https://cgit.rory.gay/nix/OOYE-module.git";
+ };
# Packages built from git
nhekoSrc = {
|