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

67 lines
1.7 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
2023-06-26 01:45:57 +00:00
#rofi
#rofi-rbw
nwg-launchers
2023-06-28 23:12:12 +00:00
gnumake42
2023-06-29 02:50:44 +00:00
wget
axel
2023-06-29 06:33:49 +00:00
grim
slurp
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-27 15:10:56 +00:00
sessionVariables = {
#GTK_IM_MODULE = "fcitx";
#QT_IM_MODULE = "fcitx";
2023-06-28 01:30:10 +00:00
#SDL_VIDEODRIVER = "wayland";
#SDL_IM_MODULE = "fcitx";
2023-06-27 15:10:56 +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";
2023-06-27 12:58:27 +00:00
diff = "icdiff";
2023-06-25 22:18:07 +00:00
};
2023-06-25 22:18:07 +00:00
file = {
# hyprland
".config/hypr/hyprland.conf".source = ./files/hyprland.conf;
2023-06-29 03:38:56 +00:00
".config/hypr/hyprpaper.conf".source = ./files/hyprpaper.conf;
2023-06-21 05:46:27 +00:00
2023-06-27 02:44:31 +00:00
# ranger
2023-06-27 12:35:25 +00:00
".config/ranger/rc.conf".source = ./files/ranger-rc.conf;
2023-06-27 02:44:31 +00:00
2023-06-27 22:33:52 +00:00
# nwg
2023-06-29 02:15:06 +00:00
".config/nwg-launchers".source = ./files/nwg-launchers;
2023-06-27 22:33:52 +00:00
2023-06-29 03:38:56 +00:00
# wallpapers
".local/share/wallpapers".source = ./wallpapers;
2023-06-25 22:18:07 +00:00
# Use flatseal to change permissions.
2023-06-26 12:41:45 +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]
2023-06-26 13:52:30 +00:00
filesystems=/run/current-system/sw/share/X11/fonts:ro;/nix/store:ro;~/.icons;
2023-06-25 22:18:07 +00:00
'';
};
};
}