add firefox to programs instead of seperate

This commit is contained in:
twoneis 2024-06-07 12:48:11 +02:00
parent e8319e1a4b
commit 6cf1fb0554
4 changed files with 16 additions and 20 deletions

View file

@ -1,16 +0,0 @@
{ pkgs, ... }: {
home.packages = with pkgs; [
signal-desktop
vesktop
fractal
];
programs.thunderbird = {
enable = true;
profiles = {
"default" = {
isDefault = true;
};
};
};
}

View file

@ -2,8 +2,6 @@
imp = if config.minimalHome then [ imp = if config.minimalHome then [
./utils ./utils
] else [ ] else [
./browser
./communication
./niri-setup ./niri-setup
./programs ./programs
./themes ./themes

View file

@ -1,9 +1,14 @@
{ pkgs, osConfig, ... }: { { pkgs, osConfig, ... }: {
imports = [
./firefox.nix
];
home.packages = with pkgs; [ home.packages = with pkgs; [
krita signal-desktop
vesktop
fractal
loupe loupe
gnome.nautilus gnome.nautilus
anki-bin
libreoffice-qt6-fresh libreoffice-qt6-fresh
]; ];
@ -28,6 +33,15 @@
}; };
}; };
programs.thunderbird = {
enable = true;
profiles = {
"default" = {
isDefault = true;
};
};
};
programs.alacritty = { programs.alacritty = {
enable = true; enable = true;
settings = import ./alacritty-config.nix; settings = import ./alacritty-config.nix;