basic modules

This commit is contained in:
2026-06-21 21:19:52 -05:00
parent 2f65730e2e
commit a537f5236d
21 changed files with 369 additions and 48 deletions
+39
View File
@@ -0,0 +1,39 @@
{ config, pkgs, ... }:
{
time.timeZone = "America/Chicago";
users.users.river = {
isNormalUser = true;
extraGroups = [
"wheel"
"networkmanager"
];
};
environment.systemPackages = with pkgs; [
git
neovim
btop
unzip
];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
nix.settings.auto-optimise-store = true;
services.pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
};
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
};
}