Compare commits
No commits in common. "100306baed8d0aaad3fb558e997fd250feb2a823" and "c115d3e22033af54d82b4ca505f45d35214f9151" have entirely different histories.
100306baed
...
c115d3e220
@ -24,10 +24,13 @@
|
|||||||
baobab
|
baobab
|
||||||
arduino-ide
|
arduino-ide
|
||||||
piper
|
piper
|
||||||
|
element-desktop
|
||||||
calibre
|
calibre
|
||||||
loupe
|
loupe
|
||||||
gimp3
|
gimp3
|
||||||
mullvad-vpn
|
mullvad-vpn
|
||||||
|
libreoffice-qt6-still
|
||||||
|
hunspellDicts.fr-any
|
||||||
base16-schemes
|
base16-schemes
|
||||||
tor
|
tor
|
||||||
wireshark
|
wireshark
|
||||||
|
|||||||
@ -40,6 +40,7 @@
|
|||||||
services.displayManager.sddm.wayland.enable = true;
|
services.displayManager.sddm.wayland.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
webcord
|
||||||
obsidian
|
obsidian
|
||||||
libsForQt5.kdenlive
|
libsForQt5.kdenlive
|
||||||
komikku
|
komikku
|
||||||
|
|||||||
@ -29,6 +29,7 @@
|
|||||||
services.displayManager.sddm.wayland.enable = true;
|
services.displayManager.sddm.wayland.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
webcord
|
||||||
obsidian
|
obsidian
|
||||||
libsForQt5.kdenlive
|
libsForQt5.kdenlive
|
||||||
floorp
|
floorp
|
||||||
|
|||||||
@ -1,7 +0,0 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./element.nix
|
|
||||||
./webcord.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -12,8 +12,6 @@
|
|||||||
./groups
|
./groups
|
||||||
./wm
|
./wm
|
||||||
./de
|
./de
|
||||||
./office
|
|
||||||
./comm
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Timzone and locales (same for all machines so I put it here)
|
# Timzone and locales (same for all machines so I put it here)
|
||||||
|
|||||||
@ -19,9 +19,6 @@ in
|
|||||||
librewolf.enable = true;
|
librewolf.enable = true;
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
office.enable = true;
|
|
||||||
element.enable = true;
|
|
||||||
webcord.enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,9 +19,6 @@ in
|
|||||||
floorp.enable = true;
|
floorp.enable = true;
|
||||||
stylix.enable = true;
|
stylix.enable = true;
|
||||||
audio.enable = true;
|
audio.enable = true;
|
||||||
office.enable= true;
|
|
||||||
webcord.enable = true;
|
|
||||||
element.enable = true;
|
|
||||||
};
|
};
|
||||||
services.logind.lidSwitch = "ignore";
|
services.logind.lidSwitch = "ignore";
|
||||||
};
|
};
|
||||||
|
|||||||
@ -1,6 +0,0 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./office.nix
|
|
||||||
];
|
|
||||||
}
|
|
||||||
@ -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
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue
Block a user