nix-flakes/hosts/installer/home.nix
2026-07-07 09:48:18 +09:00

18 lines
398 B
Nix

{ inputs, ... }:
{
xdg.enable = true;
home.stateVersion = "25.11";
home.username = "nixos";
home.homeDirectory = "/home/nixos";
imports = [
"${inputs.self}/modules/home/devtool/ghostty.nix"
"${inputs.self}/modules/home/devtool/zed.nix"
"${inputs.self}/modules/home/fastfetch.nix"
"${inputs.self}/modules/home/devtool/neovim.nix"
./plasma.nix
./shell.nix
];
}