home-manager/private.nix

39 lines
570 B
Nix
Raw Permalink Normal View History

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