Nix configurations for my homelab
2
fork

Configure Feed

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

lutea: add firefox-bin to unfree packages

yemou a496de4e 42f22b06

+4 -3
+3 -3
flake.lock
··· 159 159 }, 160 160 "nixpkgs": { 161 161 "locked": { 162 - "lastModified": 1748676562, 163 - "narHash": "sha256-7kLFXK3YSwFeSB5pQ6ltrVq/w9b1WaE4fiELAajO748=", 162 + "lastModified": 1748719291, 163 + "narHash": "sha256-lD4C9HmTBrSZjjAd9o/PlVF4tchH2LKDHPG/qc89wHY=", 164 164 "owner": "NixOS", 165 165 "repo": "nixpkgs", 166 - "rev": "f21e6d28b717da40718d8240bc72827bdd4af4b6", 166 + "rev": "f4d7622a1036200d7061f442be3fcc4cc1d97eda", 167 167 "type": "github" 168 168 }, 169 169 "original": {
+1
modules/browsers.nix
··· 1 1 { pkgs, ... }: 2 2 { 3 + garden.unfree = [ "firefox-bin" "firefox-release-bin-unwrapped" ]; 3 4 users.users.mou.packages = with pkgs; [ firefox-bin ]; 4 5 }