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 [
./utils
] else [
./browser
./communication
./niri-setup
./programs
./themes

View file

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