refactor(browsers): move browser selection to home-manager module since it is a user choice

This commit is contained in:
2026-03-27 11:32:45 +01:00
parent fdc93aff91
commit 58509367a3
2 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,6 @@
{
# user packages
home.packages = with pkgs; [
chromium
devenv
discord
fastfetch
@@ -15,4 +14,8 @@
# services and other software
services.syncthing.enable = true;
programs.home-manager.enable = true;
# browsers
programs.chromium.enable = true;
programs.firefox.enable = true;
}

View File

@@ -41,7 +41,4 @@
zip
zstd
];
# browsers
programs.firefox.enable = true;
}