making a mess of it, but getting to auto loading multi user setups!

This commit is contained in:
Chris Kruining 2025-03-13 00:50:41 +01:00
parent 20a2450683
commit b139021f8e
13 changed files with 139 additions and 216 deletions

View file

@ -0,0 +1,5 @@
{}:
{
full_name = "WOOOP WOOOP";
is_trusted = true;
}

View file

@ -1,65 +0,0 @@
// { config, lib, pkgs, ... }:
// {
// full_name = "WOOT";
// modules = {
// themes = {
// enable = true;
// theme = "everforest";
// polarity = "dark";
// };
// develop = {
// rust.enable = true;
// js.enable = true;
// dotnet.enable = true;
// };
// # EXPERIMENTS
// # services.games.minecraft.enable = true;
// services.auth.enable = true;
// desktop = {
// plasma.enable = true;
// type = "wayland";
// applications = {
// communication.enable = true;
// email.enable = true;
// office.enable = true;
// steam.enable = true;
// recording.enable = true;
// };
// terminal = {
// default = "ghostty";
// alacritty.enable = true;
// ghostty.enable = true;
// };
// editors = {
// default = "zed";
// vscodium.enable = true;
// zed.enable = true;
// nvim.enable = true;
// nano.enable = true;
// kate.enable = true;
// };
// browsers = {
// default = "chromium";
// firefox.enable = true;
// chrome.enable = true;
// };
// games = {
// minecraft.enable = true;
// };
// };
// shell = {
// default = "zsh";
// corePkgs.enable = true;
// };
// };
// }