This commit is contained in:
Peritia 2026-02-12 15:32:45 +01:00
parent b6b87d5aed
commit 9c72a71585
3546 changed files with 18655 additions and 0 deletions

44
showcaseVM/home.nix Normal file
View file

@ -0,0 +1,44 @@
{
pkgs,
inputs,
username,
...
}: let
username = "icarus";
gitUsername = "icarus";
gitEmail = "icarus@nixos.vista";
in {
#copy wallpaper files
home.file."Pictures/wallpapers" = {
source = ../Ressources/wallpapers;
recursive = true;
};
################################################################
# Basic Setup
################################################################
home.username = username;
home.homeDirectory = "/home/${username}";
home.stateVersion = "25.11";
################################################################
# Packages
################################################################
home.packages = with pkgs; [
git
];
################################################################
# Git
################################################################
programs.git = {
enable = true;
settings.user = {
name = gitUsername;
email = gitEmail;
};
};
}