move firefox into its own file

This commit is contained in:
insects 2024-08-10 19:15:18 +02:00
parent 8c7a9871de
commit e2b9168d8f
2 changed files with 6 additions and 5 deletions

View file

@ -1,12 +1,8 @@
{ pkgs, ... }: {
imports = [
./firefox.nix
./kitty.nix
];
home.packages = with pkgs; [
# programs
firefox # you need a web browser
];
fonts.fontconfig.enable = true;
}

View file

@ -0,0 +1,5 @@
{ inputs, config, pkgs, ... }: {
programs.firefox = {
enable = true;
};
}