test
This commit is contained in:
parent
06c2aefb47
commit
e291bc7405
5 changed files with 53 additions and 49 deletions
|
@ -7,7 +7,7 @@
|
|||
};
|
||||
|
||||
useDHCP = lib.mkDefault true;
|
||||
enableIPv6 = false;
|
||||
enableIPv6 = lib.mkForce false;
|
||||
firewall = {
|
||||
enable = true;
|
||||
allowedTCPPorts = [ ];
|
||||
|
|
46
nixos/common/software/packages.nix
Normal file
46
nixos/common/software/packages.nix
Normal file
|
@ -0,0 +1,46 @@
|
|||
{ pkgs, ... }: {
|
||||
# List packages installed in system profile
|
||||
environment.systemPackages = with pkgs; [
|
||||
tmux # terminal multiplexer
|
||||
rbw # CLI app for Bitwarden
|
||||
nfs-utils # nfs network share tools
|
||||
nixfmt # Formatting nix output
|
||||
dconf # Required for stylix
|
||||
ripgrep # Better grep
|
||||
sbctl # Secureboot Control
|
||||
wget # WebGet
|
||||
killall # Killall
|
||||
curl # Curl - For web requests
|
||||
neofetch # system information viewer
|
||||
rsync # copy/sync
|
||||
git # git!
|
||||
duf # replacement / prettier UI for df
|
||||
ncdu # ncurses style browser for du/dust
|
||||
du-dust # better UI for 'du"
|
||||
home-manager # manage dotfiles
|
||||
btop # like htop, but prettier
|
||||
iftop # interface top - network usage
|
||||
nload # network load - Network usage graphs
|
||||
iotop # I/O top viewer - disk r/w, etc
|
||||
sops # manage secrets
|
||||
gnupg # GNU Privacy Guard
|
||||
fx # Pretty print JSON
|
||||
nodejs # Required by fx
|
||||
eza # like ls, but prettier
|
||||
cryptsetup # used to open LUKS devices
|
||||
parted # Disk partitioner / Formatter
|
||||
screen # Terminal screen manager
|
||||
e2fsprogs # disk format utilities, like mkfs.ext4
|
||||
bat # Like cat, but with syntax highlighting
|
||||
openssl # Used to generate certs, random strings, etc
|
||||
tree # CLI directory display software
|
||||
nmap # network mapping / discovery software
|
||||
busybox # General linux commands, nslookup, dig, etc
|
||||
sshpass # ssh password helper
|
||||
cbonsai # ncurses bonsai tree
|
||||
busybox # Linux utilities
|
||||
ethtool # Ethernet troubleshooting
|
||||
fd # alternative to "Find"
|
||||
lazygit # Decent Git TUI
|
||||
];
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
../../common/desktops/${desktop}
|
||||
];
|
||||
|
||||
networking.firewall.allowedTCPPorts = [ 3389 ];:
|
||||
networking.firewall.allowedTCPPorts = [ 3389 ];
|
||||
|
||||
services.xrdp = {
|
||||
enable = true;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ ... }: {
|
||||
{
|
||||
"/etc/nixos/git" = {
|
||||
hostPath = "/etc/nixos/git";
|
||||
isReadOnly = true;
|
||||
|
|
|
@ -11,7 +11,10 @@
|
|||
./common/services/tailscale.nix
|
||||
./common/services/gnupg-agent.nix
|
||||
./common/services/opensnitch.nix
|
||||
|
||||
# Software
|
||||
./common/software/cli/weechat.nix
|
||||
./common/software/packages.nix
|
||||
|
||||
# NixOS Modules
|
||||
./common/modules/fonts.nix # Font Configs
|
||||
|
@ -23,51 +26,6 @@
|
|||
./hosts/${hostname}
|
||||
] ++ lib.optional (builtins.isString desktop) ./common/desktops/${desktop};
|
||||
|
||||
# List packages installed in system profile
|
||||
environment.systemPackages = with pkgs; [
|
||||
tmux # terminal multiplexer
|
||||
rbw # CLI app for Bitwarden
|
||||
nfs-utils # nfs network share tools
|
||||
nixfmt # Formatting nix output
|
||||
dconf # Required for stylix
|
||||
ripgrep # Better grep
|
||||
sbctl # Secureboot Control
|
||||
wget # WebGet
|
||||
killall # Killall
|
||||
curl # Curl - For web requests
|
||||
neofetch # system information viewer
|
||||
rsync # copy/sync
|
||||
git # git!
|
||||
duf # replacement / prettier UI for df
|
||||
ncdu # ncurses style browser for du/dust
|
||||
du-dust # better UI for 'du"
|
||||
home-manager # manage dotfiles
|
||||
btop # like htop, but prettier
|
||||
iftop # interface top - network usage
|
||||
nload # network load - Network usage graphs
|
||||
iotop # I/O top viewer - disk r/w, etc
|
||||
sops # manage secrets
|
||||
gnupg # GNU Privacy Guard
|
||||
fx # Pretty print JSON
|
||||
nodejs # Required by fx
|
||||
eza # like ls, but prettier
|
||||
cryptsetup # used to open LUKS devices
|
||||
parted # Disk partitioner / Formatter
|
||||
screen # Terminal screen manager
|
||||
e2fsprogs # disk format utilities, like mkfs.ext4
|
||||
bat # Like cat, but with syntax highlighting
|
||||
openssl # Used to generate certs, random strings, etc
|
||||
tree # CLI directory display software
|
||||
nmap # network mapping / discovery software
|
||||
busybox # General linux commands, nslookup, dig, etc
|
||||
sshpass # ssh password helper
|
||||
cbonsai # ncurses bonsai tree
|
||||
busybox # Linux utilities
|
||||
ethtool # Ethernet troubleshooting
|
||||
fd # alternative to "Find"
|
||||
lazygit # Decent Git TUI
|
||||
];
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
i18n.extraLocaleSettings = {
|
||||
|
|
Loading…
Reference in a new issue