diff options
| author | Fuwn <[email protected]> | 2024-09-11 20:42:04 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-11 20:42:04 -0700 |
| commit | 1d70fe6499031f1dc9e33736eaea563ae1f4a4b9 (patch) | |
| tree | 3dd83616446e31350587ccfc2d8a362a9e54a1f4 | |
| parent | lib: systems (diff) | |
| download | nixos-config-1d70fe6499031f1dc9e33736eaea563ae1f4a4b9.tar.xz nixos-config-1d70fe6499031f1dc9e33736eaea563ae1f4a4b9.zip | |
home: tailray
| -rw-r--r-- | flake.lock | 23 | ||||
| -rw-r--r-- | flake.nix | 5 | ||||
| -rw-r--r-- | home/ebisu/default.nix | 6 | ||||
| -rw-r--r-- | home/ebisu/fortune/networking/default.nix | 1 |
4 files changed, 33 insertions, 2 deletions
@@ -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": [ @@ -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; } |