125 current 2025-10-08 21:31:26 25.05.20251006.20c4598 6.12.50 *
This commit is contained in:
@@ -42,21 +42,24 @@
|
||||
};
|
||||
};
|
||||
|
||||
# enable users
|
||||
# configure users & groups
|
||||
users = {
|
||||
blake.enable = true;
|
||||
groups.media = { gid = 700; };
|
||||
blake.enable = true; # main user, home manager
|
||||
groups.media = { gid = 700; }; # user for share permissions with mediastack
|
||||
defaultUserShell = pkgs.zsh; # the goat
|
||||
};
|
||||
|
||||
|
||||
|
||||
# use the systemd-boot EFI boot loader.
|
||||
# boot (systemd is going on me)
|
||||
boot.loader.systemd-boot.enable = true; # systemd your pretty cool ya know
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.initrd.systemd.enable = true; # better logging
|
||||
|
||||
# setup hostname and networking stack
|
||||
services.resolved.enable = true;
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
fallbackDns = [ "1.1.1.1" "9.9.9.9" ];
|
||||
dnsovertls = "opportunistic";
|
||||
};
|
||||
networking = {
|
||||
hostName = "snowbelle"; # hostname
|
||||
hostId = "3e6e7055"; # zfs wants this
|
||||
@@ -70,20 +73,22 @@
|
||||
|
||||
# define shell
|
||||
programs.zsh.enable = true;
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
users.
|
||||
|
||||
# package install list
|
||||
environment.systemPackages = with pkgs; [
|
||||
vim
|
||||
lf
|
||||
git
|
||||
age
|
||||
rsync
|
||||
wget
|
||||
git
|
||||
iptables
|
||||
nettools
|
||||
neofetch
|
||||
curl
|
||||
vim
|
||||
lf
|
||||
btop
|
||||
age
|
||||
neofetch
|
||||
usbutils
|
||||
inetutils
|
||||
iptables
|
||||
];
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user