This commit is contained in:
parent
e31e2d0048
commit
403a93f951
2 changed files with 0 additions and 39 deletions
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
imports = [
|
||||
./gitea-actions-runner.nix
|
||||
./nixpad
|
||||
./podman.nix
|
||||
];
|
||||
}
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue