2025-03-02 11:53:58 +00:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
home = {
|
|
|
|
username = "tx0";
|
2025-03-02 19:00:20 +00:00
|
|
|
homeDirectory = "/home/tx0";
|
2025-03-02 11:53:58 +00:00
|
|
|
stateVersion = "24.11";
|
|
|
|
sessionVariables = {
|
|
|
|
EDITOR = "${config.home.homeDirectory}/.nix-profile/bin/nvim";
|
2025-03-02 12:14:39 +00:00
|
|
|
HYPRSHOT_DIR = "${config.home.homeDirectory}/Pictures/Screenshots/";
|
2025-03-02 19:00:20 +00:00
|
|
|
FLAKE = "${config.home.homeDirectory}/universe/";
|
2025-03-02 11:53:58 +00:00
|
|
|
NIXOS_OZONE_WL = 1;
|
|
|
|
ELECTRON_OZONE_PLATFORM_HINT = 1;
|
|
|
|
MOZ_ENABLE_WAYLAND = 1;
|
|
|
|
fish_greeting = "";
|
|
|
|
};
|
|
|
|
|
2025-03-02 12:14:39 +00:00
|
|
|
sessionPath = ["${config.home.homeDirectory}/.local/bin"];
|
2025-03-02 11:53:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
gtk.gtk3.bookmarks = [
|
|
|
|
"file:///mnt/data/"
|
2025-03-02 12:14:39 +00:00
|
|
|
"file://${config.home.homeDirectory}/Downloads/"
|
|
|
|
"file://${config.home.homeDirectory}/Documents/"
|
|
|
|
"file://${config.home.homeDirectory}/Pictures/Screenshots"
|
2025-03-02 11:53:58 +00:00
|
|
|
];
|
|
|
|
}
|