11 lines
287 B
Nix
11 lines
287 B
Nix
{ inputs, pkgs, ... }: {
|
|
imports = [
|
|
inputs.plasma-manager.homeManagerModules.plasma-manager
|
|
./plasma-manager.nix
|
|
];
|
|
|
|
# Add the Firefox integrations
|
|
programs.firefox.profiles.default.extensions = with pkgs.nur.repos.rycee.firefox-addons; [
|
|
plasma-integration
|
|
];
|
|
}
|