qute experiments

This commit is contained in:
alisceon 2026-03-13 18:56:34 +01:00
parent e508a08b86
commit ef0ae94080
7 changed files with 30 additions and 22 deletions

30
flake.lock generated
View file

@ -205,11 +205,11 @@
]
},
"locked": {
"lastModified": 1772985280,
"narHash": "sha256-FdrNykOoY9VStevU4zjSUdvsL9SzJTcXt4omdEDZDLk=",
"lastModified": 1773264488,
"narHash": "sha256-rK0507bDuWBrZo+0zts9bCs/+RRUEHuvFE5DHWPxX/Q=",
"owner": "nix-community",
"repo": "home-manager",
"rev": "8f736f007139d7f70752657dff6a401a585d6cbc",
"rev": "5c0f63f8d55040a7eed69df7e3fcdd15dfb5a04c",
"type": "github"
},
"original": {
@ -257,11 +257,11 @@
},
"nixpkgs-unstable": {
"locked": {
"lastModified": 1772963539,
"narHash": "sha256-9jVDGZnvCckTGdYT53d/EfznygLskyLQXYwJLKMPsZs=",
"lastModified": 1773122722,
"narHash": "sha256-FIqHByVqxCprNjor1NqF80F2QQoiiyqanNNefdlvOg4=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "9dcb002ca1690658be4a04645215baea8b95f31d",
"rev": "62dc67aa6a52b4364dd75994ec00b51fbf474e50",
"type": "github"
},
"original": {
@ -273,11 +273,11 @@
},
"nixpkgs_2": {
"locked": {
"lastModified": 1773068389,
"narHash": "sha256-vMrm7Pk2hjBRPnCSjhq1pH0bg350Z+pXhqZ9ICiqqCs=",
"lastModified": 1773222311,
"narHash": "sha256-BHoB/XpbqoZkVYZCfXJXfkR+GXFqwb/4zbWnOr2cRcU=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "44bae273f9f82d480273bab26f5c50de3724f52f",
"rev": "0590cd39f728e129122770c029970378a79d076a",
"type": "github"
},
"original": {
@ -295,11 +295,11 @@
]
},
"locked": {
"lastModified": 1773218258,
"narHash": "sha256-I0QMb48tJmAt2mAR0Kb4lKCT6IxwbnqfCHKSCoHfruM=",
"lastModified": 1773339783,
"narHash": "sha256-07iRHomuUvJ7Mmp+F7qo68xIb+y3gy0o/B7kuR1K2Qc=",
"owner": "nix-community",
"repo": "NUR",
"rev": "3d0a84ecc0195834bc431a2f84295d3c8f4d2f1e",
"rev": "1a4ca0d650fbfd4c58e1b1c2b153151fec77d6b2",
"type": "github"
},
"original": {
@ -316,11 +316,11 @@
]
},
"locked": {
"lastModified": 1773218258,
"narHash": "sha256-I0QMb48tJmAt2mAR0Kb4lKCT6IxwbnqfCHKSCoHfruM=",
"lastModified": 1773339783,
"narHash": "sha256-07iRHomuUvJ7Mmp+F7qo68xIb+y3gy0o/B7kuR1K2Qc=",
"owner": "nix-community",
"repo": "NUR",
"rev": "3d0a84ecc0195834bc431a2f84295d3c8f4d2f1e",
"rev": "1a4ca0d650fbfd4c58e1b1c2b153151fec77d6b2",
"type": "github"
},
"original": {

View file

@ -0,0 +1,6 @@
{ ... }:
{
programs.qutebrowser = {
enable = true;
};
}

View file

@ -31,7 +31,7 @@
name = "pyrefly";
publisher = "meta";
version = "0.55.0";
hash = "sha256-ur7lNIjnyU0gxv/B8wx2P76VaVgJRWEHyDG5BBfgbp8=";
hash = "sha256-leduAq1xehbQwrzi9dTawZCqYYvyacTQP26QWTTdk6U=";
}
{
name = "chatgpt";

View file

@ -12,15 +12,15 @@
matches = {
base.matches = [
{
trigger = ":ip ";
trigger = ";ip ";
replace = "{{pubip}} ";
}
{
trigger = ":gw2hs ";
trigger = ";gw2hs ";
replace = "Full Homestead ^w^ ";
}
{
regex = ":format (?P<alphabet>\\S+) (?P<text>\\S+) ";
regex = ";format (?P<alphabet>\\S+) (?P<text>\\S+) ";
replace = "{{format_text}} ";
vars = [
{

View file

@ -16,6 +16,7 @@ in
./xdg.nix
../../programs/foot.nix
../../programs/rofi.nix
../../programs/qutebrowser.nix
../../programs/swaylock.nix
../../programs/waybar.nix
../../services/espanso.nix
@ -123,7 +124,7 @@ in
"Mod4+space" = "exec ${notify} -t 2000 \"$(${pkgs.xonsh}/bin/xonsh ${repoRoot}/util/get_xkb.xsh)\"";
"${key_mod}+Shift+r" = "reload";
"${key_mod}+Ctrl+r" = "restart";
"${key_mod}+Shift+Backspace" = "exec ${nag} -m 'TuneD profiles:' -Z 'Performance' 'tuned-adm profile accelerator-performance' -Z 'Balanced' 'tuned-adm profile balanced' -Z 'Power Save' 'tuned-adm profile powersave'";
"${key_mod}+Backspace" = "exec ${nag} -m 'TuneD profiles:' -Z 'Performance' 'tuned-adm profile accelerator-performance' -Z 'Balanced' 'tuned-adm profile balanced' -Z 'Power Save' 'tuned-adm profile powersave'";
"${key_mod}+Shift+q" = "kill";
"Alt+F4" = "kill";

View file

@ -17,10 +17,10 @@
base09 = "#e67f43";
base0A = "#dbb32d";
base0B = "#70b433";
base0C = "#3fc5b7";
base0C = "#eb6eb7";
base0D = "#a580e2";
base0E = "#368aeb";
base0F = "#eb6eb7";
base0F = "#3fc5b7";
};
polarity = "dark";

View file

@ -27,6 +27,7 @@ dailies = [
"https://playboardle.com/",
"https://www.chess.com/daily/",
"https://www.nytimes.com/games/connections/",
"https://dialed.gg/",
"https://redactle.net/",
"https://contexto.me/en/",
"https://www.codewars.com/dashboard/",