nix/home.nix
2024-07-14 19:39:11 +02:00

17 lines
247 B
Nix

{ lib, pkgs, ... }:
{
home = {
packages = with pkgs; [
htop neofetch
];
file = {
"hello.txt".text = "Hello, World!";
};
username = "khais";
homeDirectory = "/home/khais";
stateVersion = "23.11";
};
}