mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-02-22 21:05:14 +08:00
chore: merge remote-tracking branch 'refs/remotes/origin/master'
This commit is contained in:
commit
817a83119f
14 changed files with 205 additions and 19 deletions
|
|
@ -4,7 +4,6 @@
|
|||
[ (import ./docker.nix) ]
|
||||
++ [ (import ../security/default.nix) ]
|
||||
++ [ (import ./hardware.nix) ]
|
||||
++ [ (import ./displaylink.nix) ]
|
||||
# ++ [(import ./printing.nix)]
|
||||
++ [ (import ./xserver.nix) ]
|
||||
++ [ (import ./network.nix) ]
|
||||
|
|
|
|||
|
|
@ -1,7 +1,11 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
{
|
||||
services.smartd = {
|
||||
enable = true;
|
||||
autodetect = true;
|
||||
};
|
||||
hardware.logitech.wireless = {
|
||||
enable = true;
|
||||
enableGraphical = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,5 +12,29 @@
|
|||
};
|
||||
services = {
|
||||
avahi.enable = lib.mkDefault false;
|
||||
tailscale = {
|
||||
enable = true;
|
||||
useRoutingFeatures = "client";
|
||||
extraUpFlags = [
|
||||
# "--accept-dns=false"
|
||||
"--accept-routes"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
wireshark.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
dig
|
||||
iftop
|
||||
inetutils
|
||||
ipcalc
|
||||
iperf
|
||||
nmap
|
||||
tcpdump
|
||||
traceroute
|
||||
tshark
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,11 +8,4 @@
|
|||
# pinentryFlavor = "";
|
||||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
wget
|
||||
git
|
||||
dig
|
||||
traceroute
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -30,6 +30,8 @@
|
|||
libraries = with pkgs; [ ];
|
||||
};
|
||||
|
||||
services.envfs.enable = true;
|
||||
|
||||
nixpkgs = {
|
||||
overlays = [
|
||||
self.overlays.default
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue