refactor: moved nixos modules to dendrite pattern
This commit is contained in:
parent
df8dd110ad
commit
0ea11e0236
219 changed files with 4802 additions and 4820 deletions
21
modules/nixos/nixos-modules.nix
Normal file
21
modules/nixos/nixos-modules.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{config, ...}: let
|
||||
mod = config.flake.nixosModules;
|
||||
in {
|
||||
flake.nixosModules.nixos-modules-all = {
|
||||
imports = [
|
||||
mod.nixos-system
|
||||
mod.nixos-hardware
|
||||
mod.nixos-users
|
||||
mod.nixos-desktop
|
||||
mod.nixos-ssh
|
||||
mod.nixos-i18n
|
||||
mod.storage
|
||||
mod.home-manager-adaptors
|
||||
mod.programs
|
||||
];
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"dotnet-sdk-6.0.428"
|
||||
];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue