13 lines
196 B
Nix
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";
|
|
}
|