about summary refs log tree commit diff stats
path: root/modules/system/cleanup/default.nix
blob: 4e192f7d3a4adc803a0efdf79f4e3c2b540de635 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  lib,
  ...
}: let
  cfg = config.soispha.cleanup;
in {
  # remove all the bloat, which NixOS installs by default
  options.soispha.cleanup = {
    enable = lib.mkEnableOption "avoiding of nixos' default installed packages";
  };

  config = lib.mkIf cfg.enable {
    environment = {
      defaultPackages = lib.mkForce [];
    };
  };
}