home-manager/private.nix

39 lines
570 B
Nix

{ pkgs, user, ... }:
{
home.username = user;
home.homeDirectory = "/home/${user}";
home.stateVersion = "24.05"; # Please read the comment before changing.
home.packages = with pkgs; [
pavucontrol
gnumake
gcc
thunderbird
keepassxc
light
element-desktop-wayland
darktable
kubectl
kubectx
simple-scan
calibre
libreoffice
gthumb
gimp
evince
inkscape
chromium
];
programs.home-manager.enable = true;
imports = [
./firefox.nix
./kitty.nix
./nextcloud.nix
./sway
];
}