restructure
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
{
|
||||
imports = [
|
||||
./slskd.nix
|
||||
./navidrome.nix
|
||||
./nfs.nix
|
||||
./scripts.nix
|
||||
./services.nix
|
||||
./smb.nix
|
||||
./zfs.nix
|
||||
];
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
{lib, ...}:
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
services.navidrome = {
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
systemd.timers."bc-wishlist-scraper" = {
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnCalendar = "daily";
|
||||
Unit = "bc-wishlist-scraper.service";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.services."bc-wishlist-scraper" = {
|
||||
script = ''
|
||||
${pkgs.bash}/bin/bash /home/user/bc-wishlist-scraper/run.sh
|
||||
'';
|
||||
};
|
||||
|
||||
systemd.user.timers."scdl" = {
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnCalendar = "daily";
|
||||
Unit = "scdl.service";
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user.services."scdl" = {
|
||||
script = ''
|
||||
cd ~/Music/scdl && ${pkgs.scdl}/bin/scdl me -f -c --download-archive archive.txt
|
||||
'';
|
||||
};
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
{pkgs, ...}:
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
services.slskd = {
|
||||
|
||||
@@ -0,0 +1,39 @@
|
||||
{
|
||||
boot.loader.grub = {
|
||||
enable = true;
|
||||
zfsSupport = true;
|
||||
efiSupport = true;
|
||||
efiInstallAsRemovable = true;
|
||||
mirroredBoots = [
|
||||
{
|
||||
devices = [ "nodev" ];
|
||||
path = "/boot";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "zpool/root";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/nix" = {
|
||||
device = "zpool/nix";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/var" = {
|
||||
device = "zpool/var";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/home" = {
|
||||
device = "zpool/home";
|
||||
fsType = "zfs";
|
||||
};
|
||||
fileSystems."/boot" = {
|
||||
device = "/dev/disk/by-uuid/FCFD-4472";
|
||||
fsType = "vfat";
|
||||
};
|
||||
boot.zfs.forceImportRoot = false;
|
||||
services.zfs.autoScrub.enable = true;
|
||||
|
||||
swapDevices = [ ];
|
||||
}
|
||||
Reference in New Issue
Block a user