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

22 lines
546 B
Nix
Raw Normal View History

2024-01-01 14:42:36 +09:00
{ inputs, pkgs, ... }: {
imports = [
inputs.plasma-manager.homeManagerModules.plasma-manager
2024-06-20 11:02:08 +09:00
./plasma-manager.nix
2024-01-01 14:42:36 +09:00
];
2024-01-01 16:32:13 +09:00
2024-06-20 18:47:03 +09:00
programs.bash.sessionVariables = {
DISABLE_TMUX = "true";
2024-06-20 19:26:40 +09:00
GTK_THEME = "Breeze"; # To set the firefox theme
2024-06-20 18:47:03 +09:00
};
programs.fish.shellInit = ''
set DISABLE_TMUX "true"
2024-06-20 19:26:40 +09:00
set GKT_THEME "Breeze"
2024-06-20 18:47:03 +09:00
'';
2024-06-20 11:02:08 +09:00
2024-06-20 18:47:03 +09:00
# GTK_THEME = "Gruvbox-Dark-BL";
2024-01-01 16:32:13 +09:00
# Add the Firefox integrations
2024-01-01 16:33:58 +09:00
programs.firefox.profiles.default.extensions = with pkgs.nur.repos.rycee.firefox-addons; [
2024-01-01 16:32:13 +09:00
plasma-integration
];
2024-01-01 00:25:53 +09:00
}