Compare commits

..

2 Commits

Author SHA1 Message Date
a6f92bb518 cleanup reflac 2024-12-04 11:41:48 -05:00
71d2bb0cb3 fix ipv6 2024-12-04 11:41:20 -05:00

View File

@@ -150,15 +150,19 @@
done
'')
flac
(pkgs.writeScriptBin "reflac" (
builtins.readFile (
(pkgs.writeShellApplication {
name = "reflac";
runtimeInputs = with pkgs; [ flac ];
excludeShellChecks = [ "2086" ];
text = builtins.readFile (
pkgs.fetchurl {
url = "https://raw.githubusercontent.com/chungy/reflac/refs/heads/master/reflac";
sha256 = "61c6cc8be3d276c6714e68b55e5de0e6491f50bbf195233073dbce14a1e278a7";
}
)
))
);
})
];
services.zfs = {
@@ -235,10 +239,11 @@
address = "10.1.1.1";
interface = eth_interface;
};
defaultGateway6 = {
address = "fe80::/64";
interface = eth_interface;
};
# TODO! fix this
# defaultGateway6 = {
# address = "fe80::/64";
# interface = eth_interface;
# };
};
users.users.${username} = {