diff --git a/flake.lock b/flake.lock index 7625118..82e6c62 100644 --- a/flake.lock +++ b/flake.lock @@ -1,5 +1,23 @@ { "nodes": { + "beaker-src": { + "flake": false, + "locked": { + "lastModified": 1773884524, + "narHash": "sha256-1dnlofWaxI/YRID+WPz2jHZNDyloBubDt/bAQk9ePLU=", + "ref": "refs/heads/master", + "rev": "abc598baf15d6f8a4de395a27ba34b1e769558e1", + "revCount": 21, + "shallow": false, + "type": "git", + "url": "https://git.bwaaa.monster/beaker" + }, + "original": { + "shallow": false, + "type": "git", + "url": "https://git.bwaaa.monster/beaker" + } + }, "chataigne": { "inputs": { "nixpkgs": "nixpkgs" @@ -348,6 +366,27 @@ "url": "file:///home/user01/.dotfiles/.config/nvim" } }, + "omnisearch": { + "inputs": { + "beaker-src": "beaker-src", + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1774376566, + "narHash": "sha256-9MpNFotAXh8pOcYOLivq5UomOS5LbggdsRsNVpRtXAI=", + "ref": "refs/heads/master", + "rev": "0b426487cafdc5672ba5077228bcf881c605bfbe", + "revCount": 68, + "type": "git", + "url": "https://git.voidarc.co.uk/voidarc/omnisearch" + }, + "original": { + "type": "git", + "url": "https://git.voidarc.co.uk/voidarc/omnisearch" + } + }, "otter-launcher": { "inputs": { "flake-parts": "flake-parts", @@ -377,6 +416,7 @@ "mesa-davinci": "mesa-davinci", "nixpkgs": "nixpkgs_5", "nvim-wrapped": "nvim-wrapped", + "omnisearch": "omnisearch", "otter-launcher": "otter-launcher", "sls-steam": "sls-steam", "way-edges": "way-edges" diff --git a/flake.nix b/flake.nix index f2472e5..81fc303 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,11 @@ # Davinci-resolve mesa-davinci.url = "github:nixos/nixpkgs?ref=599ddd2b79331c1e6153e1659bdaab65d62c4c82"; + + omnisearch = { + url = "git+https://git.voidarc.co.uk/voidarc/omnisearch"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; outputs = @@ -54,6 +59,10 @@ ./configs/configuration-pc.nix ./modules/davinci/davinci.nix ./modules/i3/i3.nix + inputs.omnisearch.nixosModules.default + { + services.omnisearch.enable = true; + } ]; }; };