dots/home.nix
2025-08-28 14:15:15 +03:00

13 lines
196 B
Nix

{ config, pkgs, ... }:
{
home.username = "xory";
home.homeDirectory = "/home/xory";
home.packages = with pkgs; [
neovim
fastfetch
firefox
];
home.stateVersion = "25.05";
}