Compare commits

...

2 Commits

Author SHA1 Message Date
4DBug
91d2374069 push 2026-03-23 09:05:58 -05:00
4DBug
cc96e7d20e push 2026-03-23 08:34:37 -05:00
8 changed files with 75 additions and 1 deletions

40
flake.lock generated
View File

@@ -68,6 +68,24 @@
"type": "github" "type": "github"
} }
}, },
"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"
}
},
"cachyos-kernel": { "cachyos-kernel": {
"flake": false, "flake": false,
"locked": { "locked": {
@@ -856,6 +874,27 @@
"type": "github" "type": "github"
} }
}, },
"omnisearch": {
"inputs": {
"beaker-src": "beaker-src",
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1774184185,
"narHash": "sha256-uxvwbXjpJUpWgXLi3Oadd+PqR3UV5MC7B/lm45oluLc=",
"ref": "refs/heads/master",
"rev": "bcee71cbbb0282d84841ba9b8908773ab56decf2",
"revCount": 66,
"type": "git",
"url": "https://git.bwaaa.monster/omnisearch"
},
"original": {
"type": "git",
"url": "https://git.bwaaa.monster/omnisearch"
}
},
"root": { "root": {
"inputs": { "inputs": {
"catppuccin": "catppuccin", "catppuccin": "catppuccin",
@@ -876,6 +915,7 @@
"nixpkgs-lib": [ "nixpkgs-lib": [
"nixpkgs" "nixpkgs"
], ],
"omnisearch": "omnisearch",
"stylix": "stylix", "stylix": "stylix",
"systems": "systems_4" "systems": "systems_4"
} }

View File

@@ -57,5 +57,12 @@
url = "git+https://git.bwaaa.monster/omnisearch"; url = "git+https://git.bwaaa.monster/omnisearch";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
minecraft = {
url = "github:Ninlives/minecraft.nix";
inputs.metadata.follows = "minecraft-metadata";
};
minecraft-metadata.url = "github:Ninlives/minecraft.json";
}; };
} }

View File

@@ -16,6 +16,7 @@
# sish # sish
vscode-server vscode-server
gitea gitea
omnisearch
catppuccin catppuccin

View File

@@ -0,0 +1,11 @@
{ inputs, ... }: {
den.aspects.omnisearch = {
nixos = {
imports = [ inputs.omnisearch.nixosModules.default ];
den.tunnels = [ "omnisearch" ];
services.omnisearch.enable = true;
};
};
}

View File

@@ -15,6 +15,7 @@
git = 3002; git = 3002;
monitor = 61208; monitor = 61208;
matrix = 8008; matrix = 8008;
omnisearch = 8087;
}; };
}; };
} }

View File

@@ -9,6 +9,8 @@
rebox = "sh -c 'fuser -k \"$1\"/tcp' --"; rebox = "sh -c 'fuser -k \"$1\"/tcp' --";
dock = "sh -c 'ssh -N -D \"$1\" box.bug.tools &' --"; dock = "sh -c 'ssh -N -D \"$1\" box.bug.tools &' --";
vpn = "sshuttle --dns --python python3 -r box.bug.tools 0/0";
pico = "ssh pico.sh"; pico = "ssh pico.sh";
ns = "nh os switch ~/nix --impure -H (hostname)"; ns = "nh os switch ~/nix --impure -H (hostname)";

View File

@@ -0,0 +1,12 @@
{ inputs, ... }: {
den.aspects.minecraft = {
nixos = {
imports = [
inputs.minecraft.nixosModules.default
inputs.minecraft-metadata.nixosModules.default
];
};
};
}

View File

@@ -2,7 +2,7 @@
den.aspects.sshuttle = { den.aspects.sshuttle = {
nixos = { pkgs, ... }: { nixos = { pkgs, ... }: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
python python3
sshuttle sshuttle
]; ];
}; };