forked from fabian/nix_config
unified all nixos configurations
This commit is contained in:
parent
001642dc94
commit
42530f5cfc
32 changed files with 1054 additions and 56 deletions
16
home/modules/baseline.nix
Normal file
16
home/modules/baseline.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.local.baseline;
|
||||
in {
|
||||
options.local.baseline = {
|
||||
enable = mkEnableOption "Basic settings";
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
xdg.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue