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

47 lines
1.1 KiB
Nix
Raw Normal View History

{pkgs, ...}: {
2023-06-25 22:18:07 +00:00
home = {
stateVersion = "23.05"; # Static
2023-06-25 23:12:37 +00:00
username = "user";
2023-06-25 22:18:07 +00:00
homeDirectory = "/home/user";
2023-06-25 22:18:07 +00:00
packages = with pkgs; [
btop
bat
thefuck
ranger
icdiff
podman
jdk17
2023-06-26 01:45:57 +00:00
#rofi
#rofi-rbw
nwg-launchers
2023-06-25 22:18:07 +00:00
];
2023-06-25 22:18:07 +00:00
sessionPath = [
".local/bin"
"Applications"
];
2023-06-21 05:46:27 +00:00
2023-06-25 22:18:07 +00:00
shellAliases = {
cao = "fuck";
top = "btop";
ls = "ls --color=auto";
cat = "bat -p --paging=never -u";
diff="icdiff";
};
2023-06-25 22:18:07 +00:00
file = {
# hyprland
".config/hypr/hyprland.conf".source = ./files/hyprland.conf;
2023-06-21 05:46:27 +00:00
2023-06-25 22:18:07 +00:00
# Use flatseal to change permissions.
2023-06-26 01:45:57 +00:00
".local/share/fonts".source = /run/current-system/sw/share/X11/fonts;
2023-06-21 08:11:21 +00:00
2023-06-25 22:18:07 +00:00
# Fix flatpak fonts
".local/share/flatpak/overrides/global".text = ''
[Context]
filesystems=~/.local/share/fonts:ro;~/.icons;
'';
};
};
}