Modularize NixOS 'vm' configuration

This commit is contained in:
2025-10-04 21:20:58 +02:00
parent 57d724cf36
commit 3fde62547d
5 changed files with 14 additions and 64 deletions

12
hosts/vm/home.nix Normal file
View File

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