Compare commits

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