clean office
nixos config pipeline / show-flake (push) Successful in 33s
nixos config pipeline / deploy (push) Successful in 1m3s

This commit is contained in:
smayzy
2026-01-17 16:30:43 +01:00
parent 4475bc7129
commit d54bad1c90
10 changed files with 17 additions and 175 deletions
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.aegisub.enable = mkOption {
type = types.bool;
default = false;
description = "aegisub";
};
config = mkIf config.smayzy.aegisub.enable {
environment.systemPackages = with pkgs; [
aegisub
];
};
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.bitwarden.enable = mkOption {
type = types.bool;
default = false;
description = "bitwarden";
};
config = mkIf config.smayzy.bitwarden.enable {
environment.systemPackages = with pkgs; [
bitwarden-desktop
];
};
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.blender.enable = mkOption {
type = types.bool;
default = false;
description = "blender";
};
config = mkIf config.smayzy.blender.enable {
environment.systemPackages = with pkgs; [
blender
];
};
}
-7
View File
@@ -1,13 +1,6 @@
{ ... }:
{
imports = [
./aegisub.nix
./bitwarden.nix
./blender.nix
./inkscape.nix
./kdenlive.nix
./komikku.nix
./obsidian.nix
./office.nix
];
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.inkscape.enable = mkOption {
type = types.bool;
default = false;
description = "inkscape";
};
config = mkIf config.smayzy.inkscape.enable {
environment.systemPackages = with pkgs; [
inkscape
];
};
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.kdenlive.enable = mkOption {
type = types.bool;
default = false;
description = "kdenlive";
};
config = mkIf config.smayzy.kdenlive.enable {
environment.systemPackages = with pkgs; [
kdePackages.kdenlive
];
};
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.komikku.enable = mkOption {
type = types.bool;
default = false;
description = "komikku";
};
config = mkIf config.smayzy.komikku.enable {
environment.systemPackages = with pkgs; [
komikku
];
};
}
-22
View File
@@ -1,22 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.obsidian.enable = mkOption {
type = types.bool;
default = false;
description = "obsidian";
};
config = mkIf config.smayzy.obsidian.enable {
environment.systemPackages = with pkgs; [
obsidian
];
};
}