Compare commits

...

3 Commits

Author SHA1 Message Date
100306baed enable webcord and element modules 2025-07-09 13:46:04 +02:00
4186ce739b webcord and element to modules 2025-07-09 13:39:58 +02:00
ddb5c2872c office to module 2025-07-09 13:18:40 +02:00
11 changed files with 73 additions and 5 deletions

View File

@ -24,13 +24,10 @@
baobab
arduino-ide
piper
element-desktop
calibre
loupe
gimp3
mullvad-vpn
libreoffice-qt6-still
hunspellDicts.fr-any
base16-schemes
tor
wireshark

View File

@ -40,7 +40,6 @@
services.displayManager.sddm.wayland.enable = true;
environment.systemPackages = with pkgs; [
webcord
obsidian
libsForQt5.kdenlive
komikku

View File

@ -29,7 +29,6 @@
services.displayManager.sddm.wayland.enable = true;
environment.systemPackages = with pkgs; [
webcord
obsidian
libsForQt5.kdenlive
floorp

View File

@ -0,0 +1,7 @@
{ lib, config, pkgs, ... }:
{
imports = [
./element.nix
./webcord.nix
];
}

View File

@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.element.enable = mkOption {
type = types.bool;
default = false;
description = "element";
};
config = mkIf config.smayzy.element.enable {
environment.systemPackages = with pkgs; [
element-desktop
];
};
}

View File

@ -0,0 +1,17 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.webcord.enable = mkOption {
type = types.bool;
default = false;
description = "webcord";
};
config = mkIf config.smayzy.webcord.enable {
environment.systemPackages = with pkgs; [
webcord
];
};
}

View File

@ -12,6 +12,8 @@
./groups
./wm
./de
./office
./comm
];
# Timzone and locales (same for all machines so I put it here)

View File

@ -19,6 +19,9 @@ in
librewolf.enable = true;
stylix.enable = true;
audio.enable = true;
office.enable = true;
element.enable = true;
webcord.enable = true;
};
};
}

View File

@ -19,6 +19,9 @@ in
floorp.enable = true;
stylix.enable = true;
audio.enable = true;
office.enable= true;
webcord.enable = true;
element.enable = true;
};
services.logind.lidSwitch = "ignore";
};

View File

@ -0,0 +1,6 @@
{ lib, config, pkgs, ... }:
{
imports = [
./office.nix
];
}

View File

@ -0,0 +1,18 @@
{ lib, config, pkgs, ... }:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.office.enable = mkOption {
type = types.bool;
default = false;
description = "office";
};
config = mkIf config.smayzy.office.enable {
environment.systemPackages = with pkgs; [
libreoffice-qt6-still
hunspellDicts.fr-any
];
};
}