53 lines
762 B
Nix
53 lines
762 B
Nix
|
|
{ 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";
|
||
|
|
}
|