26 lines
714 B
Nix
26 lines
714 B
Nix
{config, ...}: {
|
|
home = {
|
|
username = "tx0";
|
|
homeDirectory = "/home/tx0";
|
|
stateVersion = "24.11";
|
|
sessionVariables = {
|
|
EDITOR = "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"
|
|
];
|
|
}
|