nix-conf/hosts/nixos/home.nix

35 lines
711 B
Nix
Raw Normal View History

2025-01-28 15:00:09 +01:00
{
pkgs,
inputs,
...
}: {
2025-02-22 23:35:37 +01:00
imports = [
inputs.nvf.homeManagerModules.default
inputs.nix-index-database.hmModules.nix-index
];
2025-01-28 15:00:09 +01:00
# Some info
home.username = "crony";
home.homeDirectory = "/home/crony";
# PACKAGES
2025-02-03 13:17:26 +01:00
# Enable syncthing
services.syncthing.enable = true;
2025-01-28 15:00:09 +01:00
# Default environmental variables
home.sessionVariables = {
EDITOR = "nvim";
2025-02-06 17:03:56 +01:00
WINEPREFIX = "$HOME/.local/share/wineprefix/default";
2025-01-28 15:00:09 +01:00
};
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# Fix gtkrc-2.0 collision
home.file."/home/crony/.gtkrc-2.0".force = true;
# DO NOT CHANGE ALSO
home.stateVersion = "24.11"; # Please read the comment before changing.
}