nix-conf/home.nix

53 lines
762 B
Nix
Raw Normal View History

2024-08-23 14:52:05 -04:00
{ config, pkgs, ... }:
let
username = "ahnwuoa";
homeDirectory = "/home/${username}";
in
{
home.username = username;
home.homeDirectory = homeDirectory;
home.packages = with pkgs; [
firefox
alacritty
mpv
nsxiv
rofi
sct
maim
xclip
libsForQt5.kcalc
libsForQt5.kolourpaint
libsForQt5.filelight
papirus-icon-theme
pavucontrol
qpwgraph
gdb
lsd
bat
zoxide
fd
ripgrep
fzf
trash-cli
tlrc
micro
speedtest-cli
bluetuith
unixtools.xxd
starship
python3
gnumake
];
qt = {
enable = true;
platformTheme.name = "qtct";
style.name = "breeze";
style.package = pkgs.libsForQt5.breeze-qt5;
};
home.stateVersion = "24.05";
}