18 lines
266 B
Nix
18 lines
266 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.username = "odweta";
|
|
home.homeDirectory = "/home/odweta";
|
|
home.stateVersion = "25.05";
|
|
programs.home-manager.enable = true;
|
|
|
|
home.file = {
|
|
".bashrc".text = ''
|
|
|
|
'';
|
|
};
|
|
|
|
#home.packages = with pkgs; [
|
|
#];
|
|
}
|