45 lines
613 B
Nix
45 lines
613 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home = {
|
|
stateVersion = "23.05";
|
|
packages = with pkgs; [
|
|
thunderbird
|
|
discord
|
|
bitwarden
|
|
];
|
|
};
|
|
imports = [
|
|
common/kitty.nix
|
|
common/herbstluftwm.nix
|
|
common/desktop.nix
|
|
./common
|
|
];
|
|
|
|
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;
|
|
};
|
|
};
|
|
|
|
nixpkgs.config.allowUnfree = true;
|
|
xsession.enable = true;
|
|
}
|