Nix-Config/users/foxsoft/home.nix

15 lines
265 B
Nix
Raw Normal View History

{ 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;
}