1
0
Fork 0
nix-configuration/modules/common.nix

36 lines
793 B
Nix
Raw Normal View History

2024-06-24 12:24:21 -04:00
# Modules common to all systems
{ pkgs, config, ... }:
{
config = {
# Install ZSH for all users
programs.zsh.enable = true;
users.defaultUserShell = pkgs.zsh;
aux.system = {
packages = with pkgs; [
fastfetch # Show a neat system statistics screen when opening a terminal
nh # Nix Helper: https://github.com/viperML/nh
];
};
programs = {
# Enable NH, an alternative nixos-rebuild frontend.
nh = {
enable = true;
flake = "${config.secrets.nixConfigFolder}";
};
# Do some additional Nano configuration
nano.nanorc = ''
set linenumbers
set tabsize 4
set softwrap
set autoindent
set indicator
'';
};
2024-07-16 13:33:58 -04:00
services.fail2ban.enable = true;
2024-06-24 12:24:21 -04:00
};
}