Signed-off-by: Alex Stan <alex.stan.2010@proton.me>
This commit is contained in:
Alex Stan 2023-12-16 20:45:34 +02:00
parent 644808d12d
commit 85669cfbd1
3 changed files with 21 additions and 0 deletions

View file

@ -13,6 +13,7 @@ in {
./hardware/hardware-configuration.nix
./cachix.nix
( import ./hardware/nvidia.nix inputs )
( import ./services/dnsmasq.nix inputs )
inputs.nix-but-gigachad.nixosModules.default
];
nh = {

View file

@ -0,0 +1,19 @@
inputs: { config, pkgs, ... }: {
services.dnsmasq = {
enable = true;
settings = {
server = [
"9.9.9.9"
"8.8.8.8"
];
listen-address = [
"192.168.100.35"
];
resolv-file = ''
${pkgs.writeText "$out/resolv.conf" ''
5.12.179.165 gra.phite.ro
''}
'';
};
};
}

View file

@ -183,6 +183,7 @@ in {
blender
vesktop
ktailctl
caddy
];
};