feat(profiles): add ssd module to base profile

This commit is contained in:
ooks-io 2024-04-07 23:24:59 +12:00
parent ea48575dd0
commit c4587ff254
2 changed files with 2 additions and 1 deletions

View file

@ -7,7 +7,7 @@ in
{
options.systemModules.hardware.ssd = {
enable = mkEnableOption "Enable bluetooth module";
enable = mkEnableOption "Enable ssd module";
};
config = mkIf cfg.enable {

View file

@ -22,6 +22,7 @@ in
programs.gnomeServices.enable = true;
displayManager.tuigreet.enable = true;
openssh.enable = true;
hardware.ssd.enable = true;
};
environment.systemPackages = [pkgs.git];