.
This commit is contained in:
parent
975f97edee
commit
62626b28b9
2 changed files with 8 additions and 2 deletions
|
@ -17,6 +17,11 @@
|
|||
plasma.enable = true;
|
||||
type = "wayland";
|
||||
|
||||
applications = {
|
||||
office.enable = true;
|
||||
steam.enable = true;
|
||||
};
|
||||
|
||||
terminal = {
|
||||
default = "alacritty";
|
||||
alacritty.enable = true;
|
||||
|
|
|
@ -1,12 +1,13 @@
|
|||
{ options, config, lib, pkgs, ... }:
|
||||
let
|
||||
inherit (lib.modules) mkIf mkForce mkMerge;
|
||||
inherit (lib.attrsets) attrValues;
|
||||
|
||||
cfg = config.modules.desktop.applications.steam;
|
||||
cfg = config.modules.desktop.applications.office;
|
||||
desktop = config.modules.desktop;
|
||||
in
|
||||
{
|
||||
options.modules.desktop.applications.steam = let
|
||||
options.modules.desktop.applications.office = let
|
||||
inherit (lib.options) mkEnableOption;
|
||||
in {
|
||||
enable = mkEnableOption "Enable office suite (only-office)";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue