mirror of
https://github.com/divnix/digga.git
synced 2024-12-23 08:02:21 +03:00
fmt
This commit is contained in:
parent
a646bf1f61
commit
7cb01dcc5f
@ -1,6 +1,6 @@
|
||||
{ self, inputs, ... }:
|
||||
{
|
||||
modules = with inputs; [];
|
||||
modules = with inputs; [ ];
|
||||
exportedModules = [
|
||||
./devos.nix
|
||||
];
|
||||
|
@ -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 =
|
||||
|
Loading…
Reference in New Issue
Block a user