diff options
Diffstat (limited to '')
-rw-r--r-- | flake.lock | 27 | ||||
-rw-r--r-- | flake.nix | 10 | ||||
-rw-r--r-- | flake/nixosConfigurations/default.nix | 11 |
3 files changed, 44 insertions, 4 deletions
diff --git a/flake.lock b/flake.lock index 1f69fc84..b7f8c273 100644 --- a/flake.lock +++ b/flake.lock @@ -280,6 +280,7 @@ "strip_js_comments": "strip_js_comments", "templates": "templates", "user_js": "user_js", + "video_pause": "video_pause", "yambar_cpu": "yambar_cpu", "yambar_memory": "yambar_memory" } @@ -428,6 +429,32 @@ "type": "github" } }, + "video_pause": { + "inputs": { + "crane": [ + "crane" + ], + "flake-utils": [ + "flake-utils" + ], + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1681665568, + "narHash": "sha256-MFuebmGkzfThpxHWSJCvii6EHGa2wEwLfZgJL2FduiY=", + "ref": "refs/heads/prime", + "rev": "72c95f998368aa83e574bccebb0ed459656e1239", + "revCount": 3, + "type": "git", + "url": "https://codeberg.org/soispha/video-pause.git" + }, + "original": { + "type": "git", + "url": "https://codeberg.org/soispha/video-pause.git" + } + }, "yambar_cpu": { "inputs": { "crane": [ diff --git a/flake.nix b/flake.nix index 89faf569..ab5751ed 100644 --- a/flake.nix +++ b/flake.nix @@ -81,6 +81,14 @@ rust-overlay.follows = "rust-overlay"; }; }; + video_pause = { + url = "git+https://codeberg.org/soispha/video-pause.git"; + inputs = { + nixpkgs.follows = "nixpkgs"; + crane.follows = "crane"; + flake-utils.follows = "flake-utils"; + }; + }; strip_js_comments = { url = "git+https://codeberg.org/ene/strip_js_comments.git"; inputs = { @@ -143,6 +151,7 @@ snap-sync, templates, # my binaries + video_pause, strip_js_comments, shell-library, river_init_lesser, @@ -171,6 +180,7 @@ river_init_lesser yambar_memory yambar_cpu + video_pause grades neovim_config strip_js_comments diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix index 5d349071..270f13a2 100644 --- a/flake/nixosConfigurations/default.nix +++ b/flake/nixosConfigurations/default.nix @@ -4,6 +4,8 @@ pkgs, nixpkgs, sysLib, + # bins + video_pause, yambar_cpu, yambar_memory, strip_js_comments, @@ -31,10 +33,11 @@ pkgs sysLib # extra information - + system # bins - + + video_pause yambar_cpu yambar_memory strip_js_comments @@ -42,12 +45,12 @@ grades shell-library # external deps - + user_js neovim_config snap-sync # modules - + impermanence ; }; |