Files
nix/home.nix
2025-10-04 19:07:02 +02:00

13 lines
207 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;
}