17 lines
247 B
Nix
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";
|
|
};
|
|
}
|