nix-config/users/patrick.nix

55 lines
911 B
Nix
Raw Normal View History

2023-01-21 17:30:50 +01:00
{
config,
pkgs,
...
}: {
2023-01-22 20:43:10 +01:00
imports = [
common/kitty.nix
common/herbstluftwm.nix
common/autorandr.nix
common/desktop.nix
2023-02-07 16:07:51 +01:00
common/polybar.nix
2023-02-08 20:17:38 +01:00
common/rofi.nix
common/touchscreen.nix
#common/touchegg.nix
2023-01-22 20:43:10 +01:00
];
2023-01-21 17:30:50 +01:00
home = {
stateVersion = "23.05";
packages = with pkgs; [
thunderbird
discord
bitwarden
nextcloud-client
signal-desktop
spotify
2023-02-08 19:52:31 +01:00
xdragon
xournalpp
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 = {
enable = true;
profiles.patrick = {
userChrome = ''
#TabsToolbar {
visibility: collapse;
}
2023-01-21 21:56:47 +01:00
#titlebar {
margin-bottom: !important;
}
2023-01-21 21:56:47 +01:00
#titlebar-buttonbox {
height: 32px !important;
}
'';
search.default = "DuckDuckGo";
search.force = true;
};
2023-01-21 21:56:47 +01:00
};
2023-01-21 17:30:50 +01:00
nixpkgs.config.allowUnfree = true;
xsession.enable = true;
}