guix: Init module
This commit is contained in:
parent
1b17429c02
commit
c0ed5156dc
1 changed files with 16 additions and 0 deletions
16
modules/guix/default.nix
Normal file
16
modules/guix/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ config, lib, ... }:
|
||||
with lib;
|
||||
let
|
||||
cfg = config.eboskma.guix;
|
||||
in
|
||||
{
|
||||
options.eboskma.guix = {
|
||||
enable = mkEnableOption "guix";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services.guix = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue