oizys/hosts/algiz/configuration.nix

154 lines
3.2 KiB
Nix
Raw Normal View History

2023-05-03 16:32:06 -05:00
{ inputs, lib, config, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
];
security.sudo.wheelNeedsPassword = false;
2023-05-03 22:38:07 -05:00
2023-07-09 11:32:38 -05:00
nixpkgs.config.allowUnfree = true;
2023-07-09 11:38:43 -05:00
2023-05-04 10:57:14 -05:00
nix.package = pkgs.nixUnstable;
nix.extraOptions = ''
experimental-features = nix-command flakes
'';
users.defaultUserShell = pkgs.zsh;
2023-05-03 16:32:06 -05:00
users.extraUsers = {
daylin = {
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];
useDefaultShell = true;
initialPassword = "nix";
};
git = {
isNormalUser = true;
};
};
services.resolved.enable = true;
2023-08-07 11:19:38 -05:00
services.fail2ban = {
enable = true;
maxretry = 5;
bantime = "24h";
};
2023-05-03 16:32:06 -05:00
2023-08-07 11:19:38 -05:00
boot.kernelPackages = pkgs.linuxPackages_latest;
2023-08-10 17:24:35 -05:00
# systemd services in order to keep soft-serve list up to date
2023-08-09 12:28:16 -05:00
systemd = {
timers.softServe = {
wantedBy = [ "timers.target" ];
timerConfig = {
# every day at 4:AM
OnCalendar = "*-*-* 4:00:00";
};
};
services.softServe = {
wantedBy = [ "multi-user.target" ];
description = "update soft serve git repos";
serviceConfig = {
type = "oneshot";
ExecStart =
let gitDir = "/home/daylin/git";
in
''
${pkgs.python3.interpreter} "${gitDir}/soft/config/update-soft-serve-repos.py" && \
${pkgs.docker} compose --project-directory ${gitDir} restart
'';
};
};
};
networking = {
hostName = "algiz";
# added to make using `pip install` work in docker build
nameservers = [
"8.8.8.8"
];
};
2023-08-07 11:19:38 -05:00
time.timeZone = "America/Chicago";
programs.zsh.enable = true;
virtualisation.docker.enable = true;
programs.nix-ld.enable = true;
programs.nix-ld.libraries = with pkgs; [
stdenv.cc.cc
curl # for choosenim
];
environment.systemPackages = with pkgs; [
zsh
tmux
wget
unzip
less
gnumake
gcc
gnupg
curl
git
vim
neovim
starship
atuin
chezmoi
bat
fzf
delta
ripgrep
lsd
gh
lazygit
nixpkgs-fmt
lazydocker
(python3.withPackages (ps: with ps; [ pip ]))
micromamba
nodejs
go
rustup
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/vda"; # or "nodev" for efi only
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
# allow tcp connections for git.dayl.in (gitea)
networking.firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
2023-05-03 16:32:06 -05:00
2023-08-07 11:19:38 -05:00
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.openssh.settings.PasswordAuthentication = false;
2023-05-04 10:57:14 -05:00
2023-08-07 11:19:38 -05:00
users.mutableUsers = false;
2023-05-03 16:32:06 -05:00
2023-08-07 11:19:38 -05:00
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
}
2023-05-03 16:32:06 -05:00