Compare commits

..

No commits in common. "100306baed8d0aaad3fb558e997fd250feb2a823" and "c115d3e22033af54d82b4ca505f45d35214f9151" have entirely different histories.

11 changed files with 5 additions and 73 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -1,17 +0,0 @@
{ 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

@ -1,17 +0,0 @@
{ 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,8 +12,6 @@
./groups
./wm
./de
./office
./comm
];
# Timzone and locales (same for all machines so I put it here)

View File

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

View File

@ -19,9 +19,6 @@ 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

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

View File

@ -1,18 +0,0 @@
{ 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
];
};
}