about summary refs log tree commit diff stats
path: root/modules/by-name/cl/cleanup/module.nix
blob: f8307b73cd83a367be315fe7f7a4d519b11e90ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  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 {
    programs.nano.enable = false;
    environment = {
      defaultPackages = lib.mkForce [];
    };
  };
}