1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 08:02:21 +03:00
This commit is contained in:
GTrunSec 2022-07-10 18:34:42 -07:00 committed by Chris Montgomery
parent a646bf1f61
commit 7cb01dcc5f
No known key found for this signature in database
GPG Key ID: A6BA9BA2FDA7C997
2 changed files with 15 additions and 14 deletions

View File

@ -1,6 +1,6 @@
{ self, inputs, ... }:
{
modules = with inputs; [];
modules = with inputs; [ ];
exportedModules = [
./devos.nix
];

View File

@ -21,19 +21,20 @@ let
extraSpecialArgs = config.home.importables // { inherit self inputs; };
modules = [ configuration
{
home = {
inherit username homeDirectory;
stateVersion = "22.05";
};
}
] ++ config.home.exportedModules
++ config.home.modules
++ lib.optionals (pkgs.stdenv.hostPlatform.isLinux && !pkgs.stdenv.buildPlatform.isDarwin)
[
{targets.genericLinux.enable = true;}
];
modules = [
configuration
{
home = {
inherit username homeDirectory;
stateVersion = "22.05";
};
}
] ++ config.home.exportedModules
++ config.home.modules
++ lib.optionals (pkgs.stdenv.hostPlatform.isLinux && !pkgs.stdenv.buildPlatform.isDarwin)
[
{ targets.genericLinux.enable = true; }
];
};
homeConfigurationsPortable =