diff --git a/flake.lock b/flake.lock index 0ce65be..dba0011 100644 --- a/flake.lock +++ b/flake.lock @@ -204,13 +204,13 @@ "locked": { "lastModified": 1728337164, "narHash": "sha256-VdRTjJFyq4Q9U7Z/UoC2Q5jK8vSo6E86lHc2OanXtvc=", - "owner": "nix-community", + "owner": "joygnu", "repo": "home-manager", "rev": "038630363e7de57c36c417fd2f5d7c14773403e4", "type": "github" }, "original": { - "owner": "nix-community", + "owner": "joygnu", "repo": "home-manager", "type": "github" } diff --git a/flake.nix b/flake.nix index fca0108..7df1d82 100644 --- a/flake.nix +++ b/flake.nix @@ -37,7 +37,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; home-manager = { - url = "github:nix-community/home-manager"; + url = "github:joygnu/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; nix-on-droid = { diff --git a/modules/apps/home/alacritty/default.nix b/modules/apps/home/alacritty/default.nix index 3324190..b5964c1 100644 --- a/modules/apps/home/alacritty/default.nix +++ b/modules/apps/home/alacritty/default.nix @@ -10,7 +10,7 @@ }; colors = { bright = { - black = lib.mkForce "#928374"; + black = lib.mkForce "#504945"; red = lib.mkForce "#fb4934"; green = lib.mkForce "#b8bb26"; yellow = lib.mkForce "#fabd2f"; diff --git a/modules/apps/home/newsboat/default.nix b/modules/apps/home/newsboat/default.nix index 8a4850f..6e10290 100644 --- a/modules/apps/home/newsboat/default.nix +++ b/modules/apps/home/newsboat/default.nix @@ -125,20 +125,25 @@ } ]; extraConfig = '' - bind-key j down - bind-key k up - bind-key j next articlelist - bind-key k prev articlelist - bind-key ge end - bind-key gg home - bind-key l open - bind-key h quit - macro o set browser "setsid -f mpv --no-terminal %u &" ; open-in-browser ; set browser "elinks %u" - # color listnormal white black - color listnormal_unread black white bold - color listfocus white blue bold - color listfocus_unread white blue bold - color info white blue + bind-key j down + bind-key k up + bind-key j next articlelist + bind-key k prev articlelist + bind-key ge end + bind-key gg home + bind-key l open + bind-key h quit + macro o set browser "setsid -f mpv --no-terminal %u &" ; open-in-browser ; set browser "elinks %u" + + color background color15 color0 + color listnormal color15 color0 + color listnormal_unread color15 color0 bold + color listfocus color15 color4 + color listfocus_unread color15 color4 bold + color info color15 color8 + color article color15 color0 + + highlight article "https?://[^ ]+" blue default underline ''; }; }