Compare commits

...

1 Commits

Author SHA1 Message Date
74fe377b0c added omnisearch because fuck google 2026-03-24 20:09:21 +00:00
2 changed files with 49 additions and 0 deletions

40
flake.lock generated
View File

@@ -1,5 +1,23 @@
{ {
"nodes": { "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": { "chataigne": {
"inputs": { "inputs": {
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs"
@@ -348,6 +366,27 @@
"url": "file:///home/user01/.dotfiles/.config/nvim" "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": { "otter-launcher": {
"inputs": { "inputs": {
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
@@ -377,6 +416,7 @@
"mesa-davinci": "mesa-davinci", "mesa-davinci": "mesa-davinci",
"nixpkgs": "nixpkgs_5", "nixpkgs": "nixpkgs_5",
"nvim-wrapped": "nvim-wrapped", "nvim-wrapped": "nvim-wrapped",
"omnisearch": "omnisearch",
"otter-launcher": "otter-launcher", "otter-launcher": "otter-launcher",
"sls-steam": "sls-steam", "sls-steam": "sls-steam",
"way-edges": "way-edges" "way-edges": "way-edges"

View File

@@ -21,6 +21,11 @@
# Davinci-resolve # Davinci-resolve
mesa-davinci.url = "github:nixos/nixpkgs?ref=599ddd2b79331c1e6153e1659bdaab65d62c4c82"; mesa-davinci.url = "github:nixos/nixpkgs?ref=599ddd2b79331c1e6153e1659bdaab65d62c4c82";
omnisearch = {
url = "git+https://git.voidarc.co.uk/voidarc/omnisearch";
inputs.nixpkgs.follows = "nixpkgs";
};
}; };
outputs = outputs =
@@ -54,6 +59,10 @@
./configs/configuration-pc.nix ./configs/configuration-pc.nix
./modules/davinci/davinci.nix ./modules/davinci/davinci.nix
./modules/i3/i3.nix ./modules/i3/i3.nix
inputs.omnisearch.nixosModules.default
{
services.omnisearch.enable = true;
}
]; ];
}; };
}; };