Files
nix/hosts/vm/home.nix
2025-10-05 12:31:24 +02:00

13 lines
211 B
Nix

{ config, pkgs, ... }:
{
home.stateVersion = "25.05";
home.username = "h";
home.homeDirectory = "/home/h";
home.file.".inputrc".source = ../../dots/.inputrc;
programs.home-manager.enable = true;
}