global vs workstation and hosts vs profile
This commit is contained in:
parent
711e6f25ea
commit
9679110d69
4 changed files with 55 additions and 55 deletions
|
@ -28,12 +28,59 @@ with config;
|
|||
gnupg
|
||||
go-task
|
||||
|
||||
# cli
|
||||
_1password
|
||||
bat
|
||||
dbus
|
||||
direnv
|
||||
git
|
||||
nix-index
|
||||
python3
|
||||
fzf
|
||||
ripgrep
|
||||
fastfetch
|
||||
|
||||
# archives
|
||||
zip
|
||||
xz
|
||||
unzip
|
||||
p7zip
|
||||
|
||||
# terminal file managers
|
||||
nnn
|
||||
ranger
|
||||
yazi
|
||||
|
||||
# networking tools
|
||||
iperf3
|
||||
dnsutils # `dig` + `nslookup`
|
||||
ldns # replacement of `dig`, it provide the command `drill`
|
||||
aria2 # A lightweight multi-protocol & multi-source command-line download utility
|
||||
socat # replacement of openbsd-netcat
|
||||
nmap # A utility for network discovery and security auditing
|
||||
ipcalc # it is a calculator for the IPv4/v6 addresses
|
||||
|
||||
# system tools
|
||||
sysstat
|
||||
lm_sensors # for `sensors` command
|
||||
ethtool
|
||||
pciutils # lspci
|
||||
usbutils # lsusb
|
||||
|
||||
# system call monitoring
|
||||
strace # system call monitoring
|
||||
ltrace # library call monitoring
|
||||
lsof # list open files
|
||||
|
||||
btop # replacement of htop/nmon
|
||||
iotop # io monitoring
|
||||
iftop # network monitoring
|
||||
|
||||
# utils
|
||||
direnv # shell environment management
|
||||
pre-commit # Pre-commit tasks for git
|
||||
minio-client # S3 management
|
||||
|
||||
# nix tools
|
||||
nvd
|
||||
];
|
||||
|
|
|
@ -32,52 +32,9 @@ with config;
|
|||
vlc
|
||||
|
||||
# cli
|
||||
_1password
|
||||
bat
|
||||
dbus
|
||||
direnv
|
||||
git
|
||||
nix-index
|
||||
python3
|
||||
fzf
|
||||
ripgrep
|
||||
brightnessctl
|
||||
fastfetch
|
||||
|
||||
# terminal file managers
|
||||
nnn
|
||||
ranger
|
||||
yazi
|
||||
|
||||
# networking tools
|
||||
iperf3
|
||||
dnsutils # `dig` + `nslookup`
|
||||
ldns # replacement of `dig`, it provide the command `drill`
|
||||
aria2 # A lightweight multi-protocol & multi-source command-line download utility
|
||||
socat # replacement of openbsd-netcat
|
||||
nmap # A utility for network discovery and security auditing
|
||||
ipcalc # it is a calculator for the IPv4/v6 addresses
|
||||
|
||||
# system tools
|
||||
sysstat
|
||||
lm_sensors # for `sensors` command
|
||||
ethtool
|
||||
pciutils # lspci
|
||||
usbutils # lsusb
|
||||
|
||||
# system call monitoring
|
||||
strace # system call monitoring
|
||||
ltrace # library call monitoring
|
||||
lsof # list open files
|
||||
|
||||
btop # replacement of htop/nmon
|
||||
iotop # io monitoring
|
||||
iftop # network monitoring
|
||||
|
||||
# utils
|
||||
direnv # shell environment management
|
||||
pre-commit # Pre-commit tasks for git
|
||||
minio-client # S3 management
|
||||
# dev utils
|
||||
shellcheck
|
||||
envsubst
|
||||
];
|
||||
|
|
|
@ -7,11 +7,6 @@
|
|||
|
||||
# hardware-configuration.nix - half of the hardware-configuration.nix file
|
||||
|
||||
mySystem = {
|
||||
services.openssh.enable = true;
|
||||
security.wheelNeedsSudoPassword = false;
|
||||
};
|
||||
|
||||
# TODO build this in from flake host names
|
||||
networking.hostName = "durincore";
|
||||
|
||||
|
|
|
@ -15,16 +15,17 @@
|
|||
boot.kernelModules = [ ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
mySystem.services = {
|
||||
openssh.enable = true;
|
||||
};
|
||||
|
||||
# Restic backups disabled.
|
||||
mySystem.system.resticBackup =
|
||||
mySystem = {
|
||||
services.openssh.enable = true;
|
||||
security.wheelNeedsSudoPassword = false;
|
||||
|
||||
# Restic backups disabled.
|
||||
system.resticBackup =
|
||||
{
|
||||
local.enable = false;
|
||||
remote.enable = false;
|
||||
};
|
||||
};
|
||||
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
||||
|
|
Reference in a new issue