Deduplicate all applications and system settings

This commit is contained in:
2025-06-25 21:59:36 -07:00
parent c110357818
commit eb1666f310
38 changed files with 571 additions and 821 deletions

View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
{
users.users.caperren = {
isNormalUser = true;
description = "Corwin Perren";
extraGroups = [
"networkmanager"
"wheel"
"input"
"dialout"
"plugdev"
"adbusers"
];
packages = with pkgs; [
obsidian
];
};
}

View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
users.users.crestline = {
isNormalUser = true;
description = "Crestline";
extraGroups = [
"networkmanager"
"wheel"
"input"
"dialout"
];
packages = with pkgs; [ ];
};
services.displayManager.autoLogin = {
enable = true;
user = "crestline";
};
services.xserver.displayManager.gdm.autoLogin.delay = 60;
}