init commit, ly, i3, polybar, neovim, alacritty, NixOS Flakes + Home-Manager

This commit is contained in:
2026-07-16 00:05:44 -06:00
commit d1e1c5b60c
34 changed files with 1395 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
users.groups.jashton = {};
users.users.jashton = {
isNormalUser = true;
description = "Josh Ashton";
group = "jashton";
extraGroups = [ "networkmanager" "wheel" ];
shell = pkgs.zsh;
};
users.users.root = {
shell = pkgs.zsh;
};
}