Making nixosModules work as a flake

This commit is contained in:
Tom Charnock 2024-12-08 21:29:41 +01:00
parent 183282c97d
commit 00002b462a
7 changed files with 3 additions and 248 deletions

View File

@ -1,37 +0,0 @@
{
config,
lib,
fn,
nixos-hardware,
...
}: let
inherit (lib) mkIf mkEnableOption mkOption types;
cfg = config.hardware.cm4;
in {
options.hardware.cm4 = {
enable = mkEnableOption "custom CM4";
};
imports = [nixos-hardware.nixosModules.raspberry-pi-4] ++ (fn.scanPaths ./.);
config = mkIf cfg.enable {
hardware.raspberry-pi."4" = {
apply-overlays-dtmerge.enable = true;
xhci.enable = true;
overlays = {
audremap.enable = true;
spi-gpio40-45.enable = true;
};
};
hardware.deviceTree = {
enable = true;
filter = "*-rpi-cm4.dtb";
};
users.groups.spi = {};
services.udev.extraRules = ''
SUBSYSTEM=="spidev", KERNEL=="spidev0.0", GROUP="spi", MODE="0660"
'';
};
}

View File

@ -1,51 +0,0 @@
{
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkIf mkMerge;
cfg = config.hardware.raspberry-pi."4".overlays;
in {
options.hardware = {
raspberry-pi."4".overlays.audremap.enable = mkEnableOption ''audremap enable '';
};
config = mkMerge [
(mkIf cfg.audremap.enable {
hardware.deviceTree.overlays = [
{
name = "audremap.overlay";
filter = "*rpi-cm4*";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&audio_pins>;
frag0: __overlay__ {
brcm,pins = <12 13>;
brcm,function = <4>; /* alt0 alt0 */
};
};
fragment@1 {
target = <&chosen>;
__overlay__ {
bootargs = "snd_bcm2835.enable_headphones=1";
};
};
__overrides__ {
swap_lr = <&frag0>, "swap_lr?";
enable_jack = <&frag0>, "enable_jack?";
pins_12_13 = <&frag0>,"brcm,pins:0=12", <&frag0>,"brcm,pins:4=13", <&frag0>,"brcm,function:0=4";
pins_18_19 = <&frag0>,"brcm,pins:0=18", <&frag0>,"brcm,pins:4=19", <&frag0>,"brcm,function:0=2";
pins_40_41 = <&frag0>,"brcm,pins:0=40", <&frag0>,"brcm,pins:4=41", <&frag0>,"brcm,function:0=4";
pins_40_45 = <&frag0>,"brcm,pins:0=40", <&frag0>,"brcm,pins:4=45", <&frag0>,"brcm,function:0=4";
};
};
'';
}
];
})
];
}

View File

@ -1,55 +0,0 @@
{
config,
lib,
...
}: let
inherit (lib) mkEnableOption mkIf mkMerge;
cfg = config.hardware.raspberry-pi."4".overlays;
in {
options.hardware = {
raspberry-pi."4".overlays.spi-gpio40-45.enable = mkEnableOption ''spi-gpio40-45 enable '';
};
config = mkMerge [
(mkIf cfg.spi-gpio40-45.enable {
hardware.deviceTree = {
overlays = [
{
name = "spi-gpio40-45.overlay";
filter = "*rpi-cm4*";
dtsText = ''
/dts-v1/;
/plugin/;
/ {
compatible = "brcm,bcm2711";
fragment@0 {
target = <&spi0>;
__overlay__ {
cs-gpios = <&gpio 43 1>, <&gpio 44 1>, <&gpio 45 1>;
status = "okay";
};
};
fragment@1 {
target = <&spi0_cs_pins>;
__overlay__ {
brcm,pins = <45 44 43>;
brcm,function = <1>; /* output */
status = "okay";
};
};
fragment@2 {
target = <&spi0_pins>;
__overlay__ {
brcm,pins = <40 41 42>;
brcm,function = <3>; /* alt4 */
status = "okay";
};
};
};
'';
}
];
};
})
];
}

View File

@ -1,44 +0,0 @@
{
nixos-hardware,
lib,
config,
...
}: let
inherit (lib) mkEnableOption mkOption types mkDefault;
cfg = config.hardware.deskpi;
in {
options.hardware.deskpi = {
enable = mkEnableOption "enable DeskPi Pro daemons";
device = mkOption {
type = types.str;
default = "/dev/deskPi";
};
};
imports =
[nixos-hardware.nixosModules.raspberry-pi-4]
++ [../raspberry-pi/overlays]
++ [../raspberry-pi/apply-overlays]
++ [./deskpi-tools.nix]
++ [./trim.nix];
config = {
hardware.raspberry-pi."4" = {
xhci.enable = mkDefault false;
dwc2.enable = mkDefault true;
dwc2.dr_mode = mkDefault "host";
overlays = {
rpi4-disable-pwrled.enable = mkDefault true;
};
};
hardware.deviceTree = {
enable = true;
filter = "bcm2711-rpi-4-b.dtb";
};
services.udev.extraRules = ''
ACTION=="add", ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="7523", SUBSYSTEM=="tty", SYMLINK+="${builtins.baseNameOf cfg.device}"
'';
};
}

View File

@ -1,43 +0,0 @@
{
config,
pkgs,
...
}: let
deskpi-tools = pkgs.callPackage ../raspberry-pi/packages/deskpi-tools {};
cfg = config.hardware.deskpi;
in {
systemd.packages = [deskpi-tools];
systemd.services."deskpi-safe-shut" = {
description = "DeskPi Safe-Shutdown Service";
after = ["shutdown.target"];
before = ["final.target"];
wantedBy = ["shutdown.target"];
conflicts = ["reboot.target"];
unitConfig = {
ConditionPathExists = cfg.device;
DefaultDependencies = "no";
};
serviceConfig = {
Type = "oneshot";
ExecStart = "${deskpi-tools}/bin/safeCutOffPower";
RemainAfterExit = "yes";
TimeoutSec = "infinity";
StandardOutput = "tty";
};
};
systemd.services."deskpi" = {
description = "DeskPi PWM Control Fan Service";
after = ["multi-user.target"];
wantedBy = ["multi-user.target"];
unitConfig = {
ConditionPathExists = cfg.device;
};
serviceConfig = {
Type = "simple";
ExecStart = "${deskpi-tools}/bin/pwmFanControl";
RemainAfterExit = "no";
};
};
}

View File

@ -1,17 +0,0 @@
{
config,
lib,
...
}: let
inherit (lib) mkIf mkEnableOption types;
cfg = config.hardware.deskpi.trim;
in {
options.hardware.deskpi.trim = {
enable = mkEnableOption "enable uas fstrim support";
};
config = mkIf cfg.enable {
services.udev.extraRules = ''
ACTION=="add|change", ATTRS{idVendor}=="174c", ATTRS{idProduct}=="55aa", SUBSYSTEM=="scsi_disk", ATTR{provisioning_mode}="unmap"
'';
};
}

View File

@ -14,7 +14,9 @@
in {
nixosModules = {
uconsole = import ./uconsole {inherit pkgs nixos-hardware;};
deskpi = import ./deskpi {inherit pkgs nixos-hardware;};
uconsole-kernel = import ./uconsole/kernel {inherit pkgs};
raspberry-pi-overlays = import ./raspberry-pi/overlays;
raspberry-pi-apply-overlays = import ./raspberry-pi/apply-overlays;
};
};
}