universe/home/profile.nix
2025-03-02 17:14:39 +05:00

32 lines
809 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}/nixos/";
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"
];
universe.alacritty.enable = true;
}