15 lines
265 B
Nix
15 lines
265 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home.username = "foxsoft";
|
||
|
home.homeDirectory = "/home/foxsoft";
|
||
|
|
||
|
home.stateVersion = "22.11";
|
||
|
|
||
|
programs.home-manager.enable = true;
|
||
|
|
||
|
home.file.".bash_profile".source = ./bash_profile;
|
||
|
home.file.".bashrc".source = ./bashrc;
|
||
|
}
|
||
|
|