summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-11 20:42:04 -0700
committerFuwn <[email protected]>2024-09-11 20:42:04 -0700
commit1d70fe6499031f1dc9e33736eaea563ae1f4a4b9 (patch)
tree3dd83616446e31350587ccfc2d8a362a9e54a1f4
parentlib: systems (diff)
downloadnixos-config-1d70fe6499031f1dc9e33736eaea563ae1f4a4b9.tar.xz
nixos-config-1d70fe6499031f1dc9e33736eaea563ae1f4a4b9.zip
home: tailray
-rw-r--r--flake.lock23
-rw-r--r--flake.nix5
-rw-r--r--home/ebisu/default.nix6
-rw-r--r--home/ebisu/fortune/networking/default.nix1
4 files changed, 33 insertions, 2 deletions
diff --git a/flake.lock b/flake.lock
index 6a1d357..c6f7237 100644
--- a/flake.lock
+++ b/flake.lock
@@ -1066,7 +1066,8 @@
"pia": "pia",
"pre-commit-hooks": "pre-commit-hooks_2",
"spicetify-nix": "spicetify-nix",
- "systems": "systems_3"
+ "systems": "systems_3",
+ "tailray": "tailray"
}
},
"rust-analyzer-src": {
@@ -1192,6 +1193,26 @@
"type": "github"
}
},
+ "tailray": {
+ "inputs": {
+ "nixpkgs": [
+ "nixpkgs"
+ ]
+ },
+ "locked": {
+ "lastModified": 1722168813,
+ "narHash": "sha256-HYWkK4V+g/sLgpV3iznVS7SUV3bVMA9Zlk0Ce47iuhw=",
+ "owner": "NotAShelf",
+ "repo": "tailray",
+ "rev": "dbacf0116d394abd00926a3da9d108869677b00d",
+ "type": "github"
+ },
+ "original": {
+ "owner": "NotAShelf",
+ "repo": "tailray",
+ "type": "github"
+ }
+ },
"treefmt-nix": {
"inputs": {
"nixpkgs": [
diff --git a/flake.nix b/flake.nix
index 827151a..9844a2c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -51,6 +51,11 @@
systems.url = "github:nix-systems/default";
chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable";
+ tailray = {
+ url = "github:NotAShelf/tailray";
+ inputs.nixpkgs.follows = "nixpkgs";
+ };
+
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
diff --git a/home/ebisu/default.nix b/home/ebisu/default.nix
index 8229d2b..0aa5bd5 100644
--- a/home/ebisu/default.nix
+++ b/home/ebisu/default.nix
@@ -6,7 +6,11 @@
...
}:
{
- imports = [ ./fortune ];
+ imports = [
+ ./fortune
+ inputs.tailray.homeManagerModules.default
+ ];
+
programs.home-manager.enable = true;
nix.package = pkgs.nix;
diff --git a/home/ebisu/fortune/networking/default.nix b/home/ebisu/fortune/networking/default.nix
index 6bbb4c2..90336f5 100644
--- a/home/ebisu/fortune/networking/default.nix
+++ b/home/ebisu/fortune/networking/default.nix
@@ -7,4 +7,5 @@
];
home.packages = [ pkgs.i2p ];
+ services.tailray.enable = true;
}