Lot of change on structs

This commit is contained in:
2026-04-09 09:09:13 +02:00
parent e656247a48
commit 90bc1eb63d
42 changed files with 108 additions and 133 deletions
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.eul;
in
{
options.os.homebrew.eul = {
enable = mkEnableOption "System iina homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"eul"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.ghostty;
in
{
options.os.homebrew.ghostty = {
enable = mkEnableOption "System iterm homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"ghostty"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.iina;
in
{
options.os.homebrew.iina = {
enable = mkEnableOption "System iina homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"iina"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.iterm;
in
{
options.os.homebrew.iterm = {
enable = mkEnableOption "System iterm homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"iterm2"
];
};
}
+23
View File
@@ -0,0 +1,23 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.jetbrain;
in
{
options.os.homebrew.jetbrain = {
enable = mkEnableOption "System jetbrain homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"intellij-idea"
"pycharm"
"clion"
"rustrover"
"phpstorm"
"rubymine"
"goland"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.keka;
in
{
options.os.homebrew.keka = {
enable = mkEnableOption "System keka homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"keka"
];
};
}
+20
View File
@@ -0,0 +1,20 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.microsoft;
in
{
options.os.homebrew.microsoft = {
enable = mkEnableOption "System microsoft homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"microsoft-word"
"microsoft-excel"
"microsoft-powerpoint"
"microsoft-teams"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.obsidian;
in
{
options.os.homebrew.obsidian = {
enable = mkEnableOption "System obsidian homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"obsidian"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.zed;
in
{
options.os.homebrew.zed = {
enable = mkEnableOption "System zed homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"zed"
];
};
}
+17
View File
@@ -0,0 +1,17 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.zen;
in
{
options.os.homebrew.zen = {
enable = mkEnableOption "System zen homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"zen"
];
};
}