removed nvtop

This commit is contained in:
Elias Gasparis 2025-01-12 22:32:51 +08:00
parent b7790a75ce
commit 25a4bee30d
3 changed files with 1 additions and 44 deletions

View file

@ -9,8 +9,6 @@
./gnome.nix
./systemd.nix
./fonts.nix
./systemd.nix
./fonts.nix
];
# Bootloader.
@ -121,7 +119,7 @@
# vim # Do not forget to add an editor to edit configuration.ni>
wget
curl
nvtopPackages.full
# nvtopPackages.full
iotas
fastfetch
curl

View file

@ -1,24 +0,0 @@
{ pkgs, lib, config, ... }:
# enable docker
# not all systems need this
{
options = {
dockerModule.enable =
lib.mkEnableOption "enables Docker Module";
};
config = lib.mkIf config.dockerModule.enable {
# Enable Docker
virtualisation.docker = {
enable = true;
autoPrune = {
enable = true;
};
};
};
}

View file

@ -1,17 +0,0 @@
{ pkgs, lib, ... }:
# nix file for all modules
{
imports = [
./docker.nix
#./systemd.nix
#./gnome.nix
#./fonts.nix
];
# all modules default to true
dockerModule.enable = lib.mkDefault false;
}