calling it, multi user is building!!!

This commit is contained in:
Chris Kruining 2025-03-23 21:04:12 +01:00
parent ce69116c39
commit c165dbd9a3
Signed by: chris
SSH key fingerprint: SHA256:nG82MUfuVdRVyCKKWqhY+pCrbz9nbX6uzUns4RKa1Pg
8 changed files with 100 additions and 42 deletions

View file

@ -16,5 +16,16 @@
# EXPERIMENTS
services.auth.enable = true;
root = {
user = {
full_name = "__ROOT__";
email = "__ROOT__@${config.networking.hostName}";
};
shell = {
default = "zsh";
};
};
};
}

View file

@ -0,0 +1,50 @@
{ ... }:
{
user = {
full_name = "KAAS";
email = "kaas@kaas.kaas";
is_trusted = false;
};
themes = {
enable = true;
theme = "everforest";
polarity = "dark";
};
develop = {
rust.enable = true;
js.enable = true;
dotnet.enable = true;
};
desktop = {
plasma = {
enable = true;
# autoLogin = true;
};
applications = {
email.enable = true;
};
terminal = {
default = "ghostty";
ghostty.enable = true;
};
editors = {
default = "nvim";
nvim.enable = true;
};
browsers = {
default = "chromium";
chrome.enable = true;
};
};
shell = {
default = "zsh";
};
}