cleaned up

This commit is contained in:
biscuit
2025-05-20 12:20:52 -05:00
parent a0572f8a95
commit 25d034d7dc
5 changed files with 23 additions and 23 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
{pkgs, ...}: {
networking.hostName = "nixos";
{pkgs, hostname, ...}: {
networking.hostName = "${hostname}";
# Pick only one of the below networking options.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
+2 -2
View File
@@ -1,5 +1,5 @@
{ pkgs, ... }: {
users.users.biscuit = {
{ pkgs, username, ... }: {
users.users.${username} = {
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" ];
initialHashedPassword = "$6$Qab6SSvEJM2YRtVA$7Oyl7E3pp/FKtCC.2Tb2tyzp3yp7BFHFAKngUYJssQJ.v1Q2mqsgW9m7njpaKNcka2vyCwrnmw1R.YPlFqR0p1";