nix/home-manager/common/desktops/plasma6/default.nix

15 lines
420 B
Nix
Raw Normal View History

2024-01-01 06:42:36 +01:00
{ inputs, pkgs, ... }: {
imports = [
inputs.plasma-manager.homeManagerModules.plasma-manager
2024-06-20 04:02:08 +02:00
./plasma-manager.nix
2024-01-01 06:42:36 +01:00
];
2024-01-01 08:32:13 +01:00
2024-06-20 06:33:01 +02:00
programs.bash.sessionVariables = { DISABLE_TMUX = "true"; };
programs.fish.shellInit = ''set DISABLE_TMUX "true" '';
2024-06-20 04:02:08 +02:00
2024-01-01 08:32:13 +01:00
# Add the Firefox integrations
2024-01-01 08:33:58 +01:00
programs.firefox.profiles.default.extensions = with pkgs.nur.repos.rycee.firefox-addons; [
2024-01-01 08:32:13 +01:00
plasma-integration
];
2023-12-31 16:25:53 +01:00
}