chore: fix firefox for now

This commit is contained in:
Daniel Flanagan 2025-02-16 22:10:44 -06:00
parent a68ee40b01
commit e69bed3a98
2 changed files with 10 additions and 6 deletions

View file

@ -15,9 +15,9 @@
programs.firefox = { programs.firefox = {
# enable = true; # enable = true;
profileVersion = null; profileVersion = null;
package = pkgs.firefox.override { # package = pkgs.firefox.override {
nativeMessagingHosts = with pkgs; [ bitwarden ]; # nativeMessagingHosts = with pkgs; [ bitwarden ];
}; # };
/* /*
TODO: this should be able to work on macos, no? TODO: this should be able to work on macos, no?
TODO: enable color scheme/theme by default TODO: enable color scheme/theme by default

View file

@ -71,12 +71,16 @@
home-manager.users.daniel = { home-manager.users.daniel = {
lyte.shell.enable = true; lyte.shell.enable = true;
lyte.desktop.enable = true; lyte.desktop.enable = true;
home.file."~/.config/easyeffects/output" = {
enable = true;
source = fetchGit {
url = "https://github.com/ceiphr/ee-framework-presets";
rev = "27885fe00c97da7c441358c7ece7846722fd12fa";
};
};
services.easyeffects = { services.easyeffects = {
enable = true; enable = true;
preset = "philonmetal"; preset = "philonmetal";
# clone from https://github.com/ceiphr/ee-framework-presets
# then `cp *.json ~/.config/easyeffects/output`
# TODO: nixify this
}; };
}; };
} }