add firefox to programs instead of seperate
This commit is contained in:
parent
e8319e1a4b
commit
6cf1fb0554
4 changed files with 16 additions and 20 deletions
|
@ -1,16 +0,0 @@
|
||||||
{ pkgs, ... }: {
|
|
||||||
home.packages = with pkgs; [
|
|
||||||
signal-desktop
|
|
||||||
vesktop
|
|
||||||
fractal
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.thunderbird = {
|
|
||||||
enable = true;
|
|
||||||
profiles = {
|
|
||||||
"default" = {
|
|
||||||
isDefault = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue