146 current 2024-12-31 07:24:42 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2024-12-31 07:24:49 -05:00
parent e8f077228c
commit 3ce09d2340
2 changed files with 9 additions and 3 deletions

View File

@@ -146,9 +146,6 @@ in {
]; ];
}; };
# Install firefox.
programs.firefox.enable = true;
# Allow unfree packages # Allow unfree packages
# nixpkgs.config.allowUnfree = true; # nixpkgs.config.allowUnfree = true;

View File

@@ -0,0 +1,9 @@
{
pkgs,
lib,
...
}: {
programs.firefox = {
enable = true;
};
}