liminix/examples/arhcive.nix

152 lines
3.7 KiB
Nix
Raw Permalink Normal View History

# This is not part of Liminix per se. This is a "scratchpad"
# configuration for a device I'm testing with.
#
# Parts of it do do things that Liminix eventually needs to do, but
# don't look in here for solutions - just for identifying the
# problems.
{
config,
pkgs,
lib,
...
}: let
secrets = import ./extneder-secrets.nix;
inherit (pkgs.liminix.services) oneshot longrun bundle target;
inherit (pkgs.pseudofile) dir symlink;
2023-04-10 16:46:39 +00:00
inherit (pkgs) writeText dropbear ifwait serviceFns;
2023-08-28 15:08:46 +00:00
svc = config.system.service;
in rec {
boot = {
tftp = {
serverip = "192.168.8.148";
ipaddr = "192.168.8.251";
};
};
imports = [
../modules/wlan.nix
2023-08-28 15:08:46 +00:00
../modules/network
../modules/vlan
2023-09-01 16:32:53 +00:00
../modules/ssh
../modules/usb.nix
2023-09-02 16:28:40 +00:00
../modules/watchdog
2023-09-04 20:17:52 +00:00
../modules/mount
];
hostname = "arhcive";
2023-03-10 23:39:32 +00:00
services.dhcpc =
2023-08-28 15:08:46 +00:00
let iface = config.hardware.networkInterfaces.lan;
in svc.network.dhcp.client.build {
interface = iface;
2023-03-10 23:39:32 +00:00
dependencies = [ config.services.hostname ];
2023-08-28 15:08:46 +00:00
};
services.sshd = svc.ssh.build { };
2023-09-02 16:28:40 +00:00
services.watchdog = svc.watchdog.build {
watched = with config.services ; [ sshd dhcpc ];
};
2023-03-23 12:48:10 +00:00
services.resolvconf = oneshot rec {
dependencies = [ services.dhcpc ];
name = "resolvconf";
up = ''
. ${serviceFns}
( in_outputs ${name}
for i in $(output ${services.dhcpc} dns); do
echo "nameserver $i" > resolv.conf
done
)
'';
};
filesystem = dir {
etc = dir {
"resolv.conf" = symlink "${services.resolvconf}/.outputs/resolv.conf";
};
srv = dir {};
};
services.defaultroute4 = svc.network.route.build {
via = "$(output ${services.dhcpc} router)";
target = "default";
dependencies = [services.dhcpc];
};
programs.busybox = {
2023-09-04 20:17:52 +00:00
applets = ["lsusb" "tar"];
options = {
FEATURE_LS_TIMESTAMPS = "y";
FEATURE_LS_SORTFILES = "y";
FEATURE_VOLUMEID_EXT = "y";
};
};
2023-09-04 20:17:52 +00:00
services.mount_external_disk = svc.mount.build {
2024-04-17 11:59:13 +00:00
partlabel = "backup-disk";
2023-09-04 20:17:52 +00:00
mountpoint = "/srv";
fstype = "ext4";
};
# until we support retained uevent state, we need to push coldplug
# events to mount_external_disk to account for the case that the
# disk is already plugged at boot time
services.fudge_coldplug = oneshot {
name = "fudge_coldplug";
up = "sleep 5; for i in /sys/class/block/*/uevent; do echo 'change' > $i ;done";
dependencies = [ services.mount_external_disk ];
};
services.rsync =
let
secrets_file = oneshot rec {
name = "rsync-secrets";
up = ''
. ${serviceFns}
(in_outputs ${name}
echo "backup:${secrets.rsync_secret}" > secrets)
'';
down = "true";
};
configFile = writeText "rsync.conf" ''
pid file = /run/rsyncd.pid
2023-03-24 17:10:49 +00:00
uid = backup
[srv]
path = /srv
use chroot = yes
auth users = backup
read only = false
2023-03-24 17:10:49 +00:00
gid = backup
secrets file = ${secrets_file}/.outputs/secrets
'';
in longrun {
name = "rsync";
run = ''
${pkgs.rsyncSmall}/bin/rsync --no-detach --daemon --config=${configFile}
'';
dependencies = [
secrets_file
services.mount_external_disk
config.hardware.networkInterfaces.lan
] ;
};
2023-03-23 13:16:58 +00:00
users.root = {
passwd = lib.mkForce secrets.root.passwd;
2023-03-23 13:16:58 +00:00
# openssh.authorizedKeys.keys = [
# (builtins.readFile "/home/dan/.ssh/id_rsa.pub")
# ];
};
2023-03-24 17:10:49 +00:00
users.backup = {
uid=500; gid=500; gecos="Storage owner"; dir="/srv";
2023-03-24 17:10:49 +00:00
shell="/dev/null";
};
groups.backup = {
gid=500; usernames = ["backup"];
};
defaultProfile.packages = with pkgs; [e2fsprogs strace tcpdump ];
}