48 lines
783 B
Nix
48 lines
783 B
Nix
{ config, lib, pkgs, user, ... }:
|
|
|
|
{
|
|
home = {
|
|
username = "${user}";
|
|
homeDirectory = "/home/${user}";
|
|
|
|
packages = with pkgs; [
|
|
bat
|
|
firefox
|
|
jq
|
|
htop
|
|
ripgrep
|
|
pavucontrol
|
|
gnumake
|
|
unzip
|
|
gcc
|
|
slack
|
|
thunderbird
|
|
signal-desktop
|
|
tdesktop
|
|
whatsapp-for-linux
|
|
nextcloud-client
|
|
keepassxc
|
|
direnv
|
|
tree
|
|
light
|
|
];
|
|
|
|
stateVersion = "22.05";
|
|
};
|
|
|
|
programs.home-manager.enable = true;
|
|
|
|
imports = [
|
|
home-manager/fzf.nix
|
|
home-manager/git.nix
|
|
home-manager/kitty.nix
|
|
home-manager/neovim
|
|
home-manager/gpg
|
|
home-manager/tmux.nix
|
|
home-manager/zsh.nix
|
|
home-manager/starship.nix
|
|
home-manager/i3.nix
|
|
home-manager/i3status-rust.nix
|
|
];
|
|
}
|