Continuing Cleanup

This commit is contained in:
Annika Merris 2024-05-11 21:42:59 -04:00
parent efb5fcb5d7
commit 07219c9f8f
2 changed files with 18 additions and 3 deletions

View file

@ -30,6 +30,7 @@
pkgs.helvum pkgs.helvum
pkgs.element-desktop pkgs.element-desktop
pkgs.netbird-ui pkgs.netbird-ui
pkgs.nixpkgs-fmt
]; ];
# Home Manager is pretty good at managing dotfiles. The primary way to manage # Home Manager is pretty good at managing dotfiles. The primary way to manage
@ -83,6 +84,20 @@
bbenoist.nix bbenoist.nix
]; ];
}; };
programs.firefox = {
enable = true;
policies = {
ExtensionSettings = {
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi";
installation_mode = "normal_installed";
default_area = "navbar";
};
};
};
};
services.spotifyd = { services.spotifyd = {
enable = true; enable = true;
settings = { settings = {

View file

@ -101,12 +101,12 @@
}; };
}; };
# Install firefox.
programs.firefox.enable = true;
# Allow unfree packages # Allow unfree packages
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# Install firefox.
programs.firefox.enable = true;
# List packages installed in system profile. To search, run: # List packages installed in system profile. To search, run:
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [