Ver 1.0
This commit is contained in:
parent
b6b87d5aed
commit
9c72a71585
3546 changed files with 18655 additions and 0 deletions
44
showcaseVM/home.nix
Normal file
44
showcaseVM/home.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue