nix-config/users/patrick.nix

24 lines
326 B
Nix
Raw Normal View History

2023-01-21 17:30:50 +01:00
{
config,
pkgs,
...
}: {
home = {
stateVersion = "23.05";
packages = with pkgs; [
firefox
thunderbird
discord
];
};
imports = [
2023-01-21 17:46:50 +01:00
common/kitty.nix
common/herbstluftwm.nix
common/desktop.nix
./common
];
2023-01-21 17:30:50 +01:00
nixpkgs.config.allowUnfree = true;
xsession.enable = true;
}