Major rework in progress

This commit is contained in:
2024-10-10 11:01:59 -05:00
parent 35d920744f
commit f11a6ab86e
26 changed files with 742 additions and 253 deletions

View File

@@ -14,7 +14,7 @@
outputs = { self, ... }@inputs: let
system = "x86_64-linux";
_pkgs = import inputs.nixpkgs { inherit system; };
in rec {
in {
packages.${system}.digital = _pkgs.stdenv.mkDerivation {
@@ -34,12 +34,7 @@
};
hmModule = { config, lib, pkgs, ... }: {
hmModule = import ./. { inherit self; };
home.packages = [
packages.${pkgs.system}.digital
];
};
};
}