Compare commits
2 Commits
a28bc02d96
...
a6f92bb518
| Author | SHA1 | Date | |
|---|---|---|---|
|
a6f92bb518
|
|||
|
71d2bb0cb3
|
@@ -150,15 +150,19 @@
|
|||||||
done
|
done
|
||||||
'')
|
'')
|
||||||
|
|
||||||
flac
|
(pkgs.writeShellApplication {
|
||||||
(pkgs.writeScriptBin "reflac" (
|
name = "reflac";
|
||||||
builtins.readFile (
|
runtimeInputs = with pkgs; [ flac ];
|
||||||
|
excludeShellChecks = [ "2086" ];
|
||||||
|
|
||||||
|
text = builtins.readFile (
|
||||||
pkgs.fetchurl {
|
pkgs.fetchurl {
|
||||||
url = "https://raw.githubusercontent.com/chungy/reflac/refs/heads/master/reflac";
|
url = "https://raw.githubusercontent.com/chungy/reflac/refs/heads/master/reflac";
|
||||||
sha256 = "61c6cc8be3d276c6714e68b55e5de0e6491f50bbf195233073dbce14a1e278a7";
|
sha256 = "61c6cc8be3d276c6714e68b55e5de0e6491f50bbf195233073dbce14a1e278a7";
|
||||||
}
|
}
|
||||||
)
|
);
|
||||||
))
|
})
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
services.zfs = {
|
services.zfs = {
|
||||||
@@ -235,10 +239,11 @@
|
|||||||
address = "10.1.1.1";
|
address = "10.1.1.1";
|
||||||
interface = eth_interface;
|
interface = eth_interface;
|
||||||
};
|
};
|
||||||
defaultGateway6 = {
|
# TODO! fix this
|
||||||
address = "fe80::/64";
|
# defaultGateway6 = {
|
||||||
interface = eth_interface;
|
# address = "fe80::/64";
|
||||||
};
|
# interface = eth_interface;
|
||||||
|
# };
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.${username} = {
|
users.users.${username} = {
|
||||||
|
|||||||
Reference in New Issue
Block a user