WIP introduce nixos module system for configuration
This commit is contained in:
10
tests/module/configuration.nix
Normal file
10
tests/module/configuration.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ config, pkgs, ... } :
|
||||
{
|
||||
imports = [ ./defs.nix ./module.nix ];
|
||||
config = {
|
||||
services.a.enable = true;
|
||||
services.b.enable = true;
|
||||
|
||||
systemPackages = [ pkgs.hello ] ;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user