feat: add minimal system option
This commit is contained in:
parent
1bcdb83041
commit
2423081e2a
|
@ -1,13 +0,0 @@
|
||||||
{ pkgs
|
|
||||||
, lib
|
|
||||||
, config
|
|
||||||
, ... }: with lib; let
|
|
||||||
cfg = config.global.util;
|
|
||||||
in {
|
|
||||||
options.global.util = { };
|
|
||||||
|
|
||||||
config = {
|
|
||||||
programs.zsh.enable = true;
|
|
||||||
environment.shells = singleton pkgs.zsh;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,10 +1,14 @@
|
||||||
{ pkgs
|
{ pkgs
|
||||||
, lib
|
, lib
|
||||||
, config
|
, config
|
||||||
, ... }: with lib; {
|
, ... }: with lib; let
|
||||||
|
cfg = config.passthrough.util;
|
||||||
|
in {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
pv file wget nix-index
|
pv file wget e2fsprogs
|
||||||
e2fsprogs lsscsi zip unzip
|
] ++ optionals (!cfg.minimal) [
|
||||||
|
nix-index
|
||||||
|
lsscsi zip unzip
|
||||||
pciutils usbutils nvme-cli
|
pciutils usbutils nvme-cli
|
||||||
] ++ optionals config.passthrough.gui [
|
] ++ optionals config.passthrough.gui [
|
||||||
gtk-engine-murrine
|
gtk-engine-murrine
|
||||||
|
|
|
@ -2,15 +2,31 @@
|
||||||
, lib
|
, lib
|
||||||
, config
|
, config
|
||||||
, ... }: with lib; let
|
, ... }: with lib; let
|
||||||
|
cfg = config.home.util;
|
||||||
gui = with config.global.gui; ( enable && session );
|
gui = with config.global.gui; ( enable && session );
|
||||||
in {
|
in {
|
||||||
users.home.persist.directories = [
|
options.home.util = {
|
||||||
".cache/nix-index"
|
minimal = mkEnableOption "minimal system environment with less packages";
|
||||||
] ++
|
};
|
||||||
optionals gui [
|
|
||||||
".local/share/Mission Planner"
|
config = {
|
||||||
".config/ExpressLRS Configurator"
|
users.homeModules = [
|
||||||
".config/betaflight-configurator"
|
# this module passes util configuration to home-manager
|
||||||
".config/inav-configurator"
|
{ passthrough.util = cfg; }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
programs.zsh.enable = true;
|
||||||
|
environment.shells = singleton pkgs.zsh;
|
||||||
|
|
||||||
|
users.home.persist.directories = [ ] ++
|
||||||
|
optionals (!cfg.minimal) [
|
||||||
|
".cache/nix-index"
|
||||||
|
] ++
|
||||||
|
optionals gui [
|
||||||
|
".local/share/Mission Planner"
|
||||||
|
".config/ExpressLRS Configurator"
|
||||||
|
".config/betaflight-configurator"
|
||||||
|
".config/inav-configurator"
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue