pi4 argononed

This commit is contained in:
2025-05-19 15:47:39 -05:00
parent 0d1cdfd82d
commit 8b5124aed4
5 changed files with 75 additions and 23 deletions

View File

@@ -1,6 +1,19 @@
{ argononed, ...}:
#{ pkgs, ... }:
#let
# argononed = pkgs.callPackage ./pkg.nix {};
#in
#{
# environment.systemPackages = [ argononed ];
#}
{ lib, stdenv, pkgs, config, ...}:
{
imports = [ "${argononed}/OS/nixos" ];
imports = let
argononed = fetchGit {
url = "https://github.com/mjallen18/argononed.git";
ref = "dev"; # Or any other branches deemed suitable
};
in
[ "${argononed}/OS/nixos" ];
services.argonone = {
enable = true;
@@ -12,4 +25,4 @@
hysteresis = 4;
};
};
}
}