This commit is contained in:
4DBug
2026-08-28 13:11:44 -05:00
parent 843182fae7
commit 7de89eccd8
6 changed files with 32 additions and 9 deletions
Generated
+4 -4
View File
@@ -132,11 +132,11 @@
]
},
"locked": {
"lastModified": 1787776738,
"narHash": "sha256-npYHSWEzVp1r6pIXGxPUSbdpsOxlizHtZd27vE5E92I=",
"lastModified": 1787796942,
"narHash": "sha256-ITeSVzyhSIojcNueQsFDE4quj8l7T7VaPLe47PDvwqY=",
"ref": "refs/heads/main",
"rev": "9e93df5961258d16cf1df3a59ff745b1b6fe9df8",
"revCount": 8,
"rev": "fc0e2c7af6b386f18a9c14c3075d7ca020c4fa39",
"revCount": 12,
"type": "git",
"url": "https://git.bug.tools/bug/tv.git"
},
+16 -2
View File
@@ -1,12 +1,12 @@
{ inputs, ... }: {
den.aspects.niri = {
nixos = { pkgs, lib, ... }: {
nixos = { pkgs, ... }: {
services.displayManager = {
sessionPackages = [ pkgs.niri ];
};
};
homeManager = { pkgs, lib, ... }: {
homeManager = { pkgs, ... }: {
imports = [ inputs.niri.homeModules.niri ];
home.packages = with pkgs; [
@@ -28,22 +28,29 @@
input.touchpad = {
click-method = "clickfinger";
dwt = true;
};
overview.backdrop-color = "#11111b";
layout = {
gaps = 10;
border.enable = false;
focus-ring = {
enable = true;
width = 2;
active.color = "#cba6f7";
};
preset-column-widths = [
{ proportion = 0.50; }
{ proportion = 1.00; }
];
default-column-width = { proportion = 1.00; };
};
window-rules = [
{
geometry-corner-radius = {
@@ -52,26 +59,33 @@
bottom-left = 12.0;
bottom-right = 12.0;
};
clip-to-geometry = true;
draw-border-with-background = true;
}
{
matches = [
{ app-id = "dev.noctalia.Noctalia"; }
];
open-floating = true;
default-column-width = {
fixed = 1080;
};
default-window-height = {
fixed = 920;
};
geometry-corner-radius = {
top-left = 12.0;
top-right = 12.0;
bottom-left = 12.0;
bottom-right = 12.0;
};
clip-to-geometry = true;
draw-border-with-background = true;
}
+1
View File
@@ -28,6 +28,7 @@
"Archives" = mkFolder "/home/bug/Archives";
"Software" = mkFolder "/home/bug/Software";
"Scripts" = mkFolder "/home/bug/Scripts";
"Projects" = mkFolder "/home/bug/Projects";
"Documents" = mkFolder "/home/bug/Documents";
"Downloads" = mkFolder "/home/bug/Downloads";
"Pictures" = mkFolder "/home/bug/Pictures";
+1 -1
View File
@@ -1,6 +1,6 @@
{ inputs, ... }: {
den.aspects.bugtv = {
nixos = { pkgs, config, ... }: {
nixos = { pkgs, ... }: {
imports = [ inputs.bug-tv.nixosModules.default ];
den.tunnels = [ "api-tv" ];
+1 -1
View File
@@ -7,7 +7,7 @@
polytoria
game-tools
emulators
#star-citizen
star-citizen
minecraft
];
};
+9 -1
View File
@@ -5,7 +5,7 @@
enable = true;
settings = {
plugin = [ "opencode-plugin-llama.cpp@latest" ];
plugin = [ "opencode-plugin-llama.cpp@latest" "opencode-goal-plugin" ];
provider = {
"llama.cpp" = {
@@ -21,6 +21,14 @@
};
};
};
command = {
goal = {
description = "Set a session-scoped goal and auto-continue until complete.";
template = "$ARGUMENTS";
agent = "build";
};
};
};
};
};