Initial commit

This commit is contained in:
Ghostfox
2026-03-30 00:20:36 +02:00
commit 63b75b2e8f
56 changed files with 2581 additions and 0 deletions

22
modules/base/user.nix Normal file
View File

@@ -0,0 +1,22 @@
{ inputs, pkgs, ... }:
{
# NixOS
users.users.dark = {
isNormalUser = true;
description = "Dark Steveneq";
extraGroups = [
"wheel"
"networkmanager"
"video"
"kvm"
];
};
# Home manager
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
users.dark = ./home;
extraSpecialArgs = { inherit inputs; };
};
}