Initial commit

This commit is contained in:
JuliusFreudenberger 2025-01-14 01:29:24 +01:00
commit b0a95003b7
57 changed files with 1561 additions and 0 deletions

14
users/julius/home.nix Normal file
View file

@ -0,0 +1,14 @@
{pkgs, username, ...}: {
imports = [
../../home/core.nix
../../home/zsh
../../home/neovim
../../home/gtk
../../home/xdg
../../home/direnv
];
}

12
users/julius/nixos.nix Normal file
View file

@ -0,0 +1,12 @@
{
pkgs,
lib,
config,
...
}: {
users.users.julius = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "docker"];
shell = pkgs.zsh;
};
}