nix-config/users/patrick.nix

51 lines
680 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
./common
];
2023-01-21 17:30:50 +01:00
home = {
stateVersion = "23.05";
packages = with pkgs; [
thunderbird
discord
2023-01-21 21:56:47 +01:00
bitwarden
2023-01-22 14:17:51 +01:00
nextcloud-client
2023-01-22 14:53:39 +01:00
signal-desktop
spotify
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;
}
#titlebar {
margin-bottom: !important;
}
#titlebar-buttonbox {
height: 32px !important;
}
'';
search.default = "DuckDuckGo";
search.force = true;
};
};
2023-01-21 17:30:50 +01:00
nixpkgs.config.allowUnfree = true;
xsession.enable = true;
}