Skip to content

Commit

Permalink
feat: add thunderbird, move ametrine to aux
Browse files Browse the repository at this point in the history
  • Loading branch information
jakehamilton committed Sep 3, 2024
1 parent d20e02c commit eddabeb
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 111 deletions.
18 changes: 18 additions & 0 deletions modules/nixos/apps/thunderbird/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{ config, pkgs, lib, ... }:
let
cfg = config.plusultra.apps.thunderbird;
in
{
options.plusultra.apps.thunderbird = {
enable = lib.mkEnableOption "Thunderbird";
package = lib.mkOption {
type = lib.types.package;
default = pkgs.thunderbird;
description = "Thunderbird package to use";
};
};

config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
};
}
111 changes: 0 additions & 111 deletions systems/x86_64-linux/ametrine/default.nix

This file was deleted.

1 change: 1 addition & 0 deletions systems/x86_64-linux/bismuth/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ with lib.${namespace};
ubports-installer = enabled;
steamtinkerlaunch = enabled;
r2modman = enabled;
thunderbird = enabled;
};

services = {
Expand Down

0 comments on commit eddabeb

Please sign in to comment.