Nix configurations for my homelab
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

modules/browsers.nix: add google-chrome

I think that if you develop a web app that doesn't support Firefox,
you should be blown to smithereens.

yemou cef55ede c0c5926f

+21 -14
+12 -12
flake.lock
··· 62 62 ] 63 63 }, 64 64 "locked": { 65 - "lastModified": 1751146119, 66 - "narHash": "sha256-gvjG95TCnUVJkvQvLMlnC4NqiqFyBdJk3o8/RwuHeaU=", 65 + "lastModified": 1751693185, 66 + "narHash": "sha256-+LKghTO5wWBcR/MJAeoSarWR7c7dO6GyA8+jM8DHV08=", 67 67 "owner": "nix-community", 68 68 "repo": "home-manager", 69 - "rev": "76d0c31fce2aa0c71409de953e2f9113acd5b656", 69 + "rev": "36c57c6a1d03a5efbf5e23c04dbe21259d25f992", 70 70 "type": "github" 71 71 }, 72 72 "original": { ··· 159 159 }, 160 160 "nixpkgs": { 161 161 "locked": { 162 - "lastModified": 1751203939, 163 - "narHash": "sha256-omYD+H5LlSihz2DRfv90I8Oeo7JNEwvcHPHX+6nMIM4=", 162 + "lastModified": 1751700298, 163 + "narHash": "sha256-sxi5xYaVPduI62Ggr6hewLfg/K9jxKj6v8LuFhtKYtY=", 164 164 "owner": "NixOS", 165 165 "repo": "nixpkgs", 166 - "rev": "650e71cbf76de8dd16f5648a96981b726c4ef8fe", 166 + "rev": "63f04ed69c86f274fd3243c41f32f01cfb935b86", 167 167 "type": "github" 168 168 }, 169 169 "original": { ··· 229 229 "rust-overlay": "rust-overlay" 230 230 }, 231 231 "locked": { 232 - "lastModified": 1751196889, 233 - "narHash": "sha256-kV4TI+EKRyRvgzM61dsMjD1B4fQgjkaJijHq3PHX9No=", 232 + "lastModified": 1751701000, 233 + "narHash": "sha256-oIVwuzTxuCm7G69Jmx29LuLOb6mGQixJMkr6hQZEEto=", 234 234 "owner": "roc-lang", 235 235 "repo": "roc", 236 - "rev": "259b290c2a39e45f683d329d16ba2963cec13c68", 236 + "rev": "926d6abfaa80bc62309ffdb90abff8ae0a37f867", 237 237 "type": "github" 238 238 }, 239 239 "original": { ··· 280 280 "nixpkgs": "nixpkgs_3" 281 281 }, 282 282 "locked": { 283 - "lastModified": 1750119275, 284 - "narHash": "sha256-Rr7Pooz9zQbhdVxux16h7URa6mA80Pb/G07T4lHvh0M=", 283 + "lastModified": 1751606940, 284 + "narHash": "sha256-KrDPXobG7DFKTOteqdSVeL1bMVitDcy7otpVZWDE6MA=", 285 285 "owner": "Mic92", 286 286 "repo": "sops-nix", 287 - "rev": "77c423a03b9b2b79709ea2cb63336312e78b72e2", 287 + "rev": "3633fc4acf03f43b260244d94c71e9e14a2f6e0d", 288 288 "type": "github" 289 289 }, 290 290 "original": {
+9 -2
modules/browsers.nix
··· 1 1 { pkgs, ... }: 2 2 { 3 - garden.unfree = [ "firefox-bin" "firefox-bin-unwrapped" ]; 4 - users.users.mou.packages = with pkgs; [ firefox-bin ]; 3 + garden.unfree = [ 4 + "firefox-bin" 5 + "firefox-bin-unwrapped" 6 + "google-chrome" 7 + ]; 8 + users.users.mou.packages = with pkgs; [ 9 + firefox-bin 10 + google-chrome 11 + ]; 5 12 }