This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/home/user/home.nix

37 lines
689 B
Nix
Raw Normal View History

{pkgs, ...}: {
stateVersion = "23.05"; # Static
username = "GPD User";
homeDirectory = "/home/user";
packages = with pkgs; [
btop
bat
thefuck
ranger
icdiff
podman
jdk17
];
2023-06-21 05:46:27 +00:00
sessionPath = {
".local/bin"
"Applications"
}
shellAliases = {
cao = "fuck";
top = "btop";
ls = "ls --color=auto";
cat = "bat -p --paging=never -u";
diff="icdiff";
};
file = {
# TODO: hyprland
2023-06-21 05:46:27 +00:00
# Use flatseal to change permissions.
".local/share/fonts" = {
source = /run/current-system/sw/share/X11/fonts
};
};
}