move firefox into its own file
This commit is contained in:
parent
8c7a9871de
commit
e2b9168d8f
2 changed files with 6 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
5
home/common/desktop/firefox.nix
Normal file
5
home/common/desktop/firefox.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{ inputs, config, pkgs, ... }: {
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue