Remove nixpad configuration
All checks were successful
/ check (push) Successful in 51s

This commit is contained in:
Oliver Davies 2025-08-18 09:27:29 +01:00
parent e31e2d0048
commit 403a93f951
2 changed files with 0 additions and 39 deletions

View file

@ -1,7 +1,6 @@
{
imports = [
./gitea-actions-runner.nix
./nixpad
./podman.nix
];
}

View file

@ -1,38 +0,0 @@
{
config,
lib,
pkgs,
...
}:
let
cfg = config.nixpad;
in
{
options.nixpad = {
enable = lib.mkEnableOption "Enable nixpad configuration";
};
config = lib.mkIf cfg.enable {
services.xserver = {
enable = true;
desktopManager.cinnamon.enable = true;
displayManager.lightdm.enable = true;
};
programs = {
firefox.enable = true;
};
environment.systemPackages = with pkgs; [
libreoffice
];
nix.gc = {
automatic = true;
dates = "Mon 4:00";
options = "--delete-older-than 30d";
};
};
}