disable firefox profile on profile ft and add brightnessctl to ft home packages

This commit is contained in:
2024-11-27 17:32:16 +01:00
parent e4450bf25a
commit d8de37b038
2 changed files with 3 additions and 1 deletions

View File

@ -6,10 +6,12 @@
home.packages = with pkgs;[ home.packages = with pkgs;[
neovim neovim
dmenu dmenu
brightnessctl
]; ];
home.file = { home.file = {
".config/sxhkd".source = dotfiles/config/sxhkd; ".config/sxhkd".source = dotfiles/config/sxhkd;
".config/bspwm/host.sh".source = ./bspwm/host.sh; ".config/bspwm/host.sh".source = ./bspwm/host.sh;
}; };
programs.firefox.enable = false;
} }

View File

@ -2,7 +2,7 @@
{ {
programs.firefox = { programs.firefox = {
enable = true; enable = lib.mkDefault true;
profiles.default = { profiles.default = {
extensions = with inputs.firefox-addons.packages."x86_64-linux"; extensions = with inputs.firefox-addons.packages."x86_64-linux";
[vimium ublock-origin]; [vimium ublock-origin];