customisations

This commit is contained in:
Xory 2025-08-28 14:15:15 +03:00
commit 146c0a0929
3 changed files with 189 additions and 0 deletions

13
home.nix Normal file
View file

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