pi4 argononed
This commit is contained in:
@@ -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;
|
||||
};
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user