Files
LiNix/modules/users/lily/home.nix
T

30 lines
691 B
Nix

{inputs, self, ...}:{
flake.homeConfigurations."lily" = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = [ self.homeModules.lily ];
extraSpecialArgs = { inherit inputs; };
};
flake.homeModules.lily = { pkgs, ... }:{
home = {
username = "lily";
homeDirectory = "/home/lily";
stateVersion = "25.05";
packages = [ ];
file = { };
sessionVariables = { };
};
programs = {
home-manager.enable = true;
bash.enable = true;
git = {
enable = true;
settings.user = {
name = "Lily Anderson";
email = "lilylanderson@zoho.com";
};
lfs.enable = true;
};
};
};
}