2023-01-21 17:30:50 +01:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2023-01-22 20:43:10 +01:00
|
|
|
imports = [
|
2023-02-10 18:44:07 +01:00
|
|
|
common/programs/kitty.nix
|
2023-03-08 14:11:46 +01:00
|
|
|
common/graphical/hyprland.nix
|
2023-03-23 12:33:42 +01:00
|
|
|
#common/programs/polybar.nix
|
2023-02-10 18:44:07 +01:00
|
|
|
common/programs/rofi.nix
|
2023-03-23 12:33:42 +01:00
|
|
|
#common/programs/spotify.nix
|
2023-03-12 12:30:30 +01:00
|
|
|
#common/graphical/herbstluftwm.nix
|
|
|
|
#common/graphical/autorandr.nix
|
2023-03-12 05:55:04 +01:00
|
|
|
#common/touchegg-module.nix
|
|
|
|
#common/touchegg-settings.nix
|
2023-01-22 20:43:10 +01:00
|
|
|
];
|
|
|
|
|
2023-01-21 17:30:50 +01:00
|
|
|
home = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
thunderbird
|
|
|
|
discord
|
2023-01-28 02:50:14 +01:00
|
|
|
bitwarden
|
|
|
|
nextcloud-client
|
|
|
|
signal-desktop
|
2023-04-24 10:43:36 +02:00
|
|
|
chromium
|
2023-02-08 19:52:31 +01:00
|
|
|
xdragon
|
2023-02-10 18:16:39 +01:00
|
|
|
xournalpp
|
2023-02-10 18:44:07 +01:00
|
|
|
zathura
|
|
|
|
pinentry
|
|
|
|
arandr
|
|
|
|
feh
|
|
|
|
xclip
|
2023-03-08 08:12:36 +01:00
|
|
|
acpilight
|
2023-01-21 17:30:50 +01:00
|
|
|
];
|
2023-02-10 18:44:07 +01:00
|
|
|
sessionVariables = {
|
|
|
|
# Firefox touch support
|
|
|
|
"MOZ_USE_XINPUT2" = 1;
|
|
|
|
# Firefox Hardware render
|
|
|
|
"MOZ_WEBRENDER" = 1;
|
|
|
|
};
|
2023-01-21 17:30:50 +01:00
|
|
|
};
|
2023-01-21 17:46:50 +01:00
|
|
|
|
2023-01-21 21:56:47 +01:00
|
|
|
programs.firefox = {
|
2023-01-28 02:50:14 +01:00
|
|
|
enable = true;
|
|
|
|
profiles.patrick = {
|
|
|
|
userChrome = ''
|
|
|
|
#TabsToolbar {
|
|
|
|
visibility: collapse;
|
|
|
|
}
|
2023-01-21 21:56:47 +01:00
|
|
|
|
2023-01-28 02:50:14 +01:00
|
|
|
#titlebar {
|
|
|
|
margin-bottom: !important;
|
|
|
|
}
|
2023-01-21 21:56:47 +01:00
|
|
|
|
2023-01-28 02:50:14 +01:00
|
|
|
#titlebar-buttonbox {
|
|
|
|
height: 32px !important;
|
|
|
|
}
|
|
|
|
'';
|
|
|
|
};
|
2023-01-21 21:56:47 +01:00
|
|
|
};
|
|
|
|
|
2023-03-20 07:05:59 +01:00
|
|
|
# notification are nice to have
|
|
|
|
services.dunst.enable = true;
|
|
|
|
|
2023-01-21 17:30:50 +01:00
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
xsession.enable = true;
|
|
|
|
}
|