universe/home/profile.nix
2025-03-03 00:00:20 +05:00

30 lines
774 B
Nix

{
pkgs,
config,
...
}: {
home = {
username = "tx0";
homeDirectory = "/home/tx0";
stateVersion = "24.11";
sessionVariables = {
EDITOR = "${config.home.homeDirectory}/.nix-profile/bin/nvim";
HYPRSHOT_DIR = "${config.home.homeDirectory}/Pictures/Screenshots/";
FLAKE = "${config.home.homeDirectory}/universe/";
NIXOS_OZONE_WL = 1;
ELECTRON_OZONE_PLATFORM_HINT = 1;
MOZ_ENABLE_WAYLAND = 1;
fish_greeting = "";
};
sessionPath = ["${config.home.homeDirectory}/.local/bin"];
};
gtk.gtk3.bookmarks = [
"file:///mnt/data/"
"file://${config.home.homeDirectory}/Downloads/"
"file://${config.home.homeDirectory}/Documents/"
"file://${config.home.homeDirectory}/Pictures/Screenshots"
];
}