1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-23 03:32:08 +01:00
github.com-tboerger-nixos-c.../shared/programs/default.nix

22 lines
296 B
Nix
Raw Normal View History

{ pkgs, lib, config, options, ... }:
with lib;
{
imports = [
./browser.nix
./mail.nix
./password.nix
./steam.nix
];
options = {
personal = {
programs = {
enable = mkEnableOption "Programs" // {
default = true;
};
};
};
};
}