This commit is contained in:
parent
54954d6223
commit
54b43e4203
58 changed files with 224 additions and 242 deletions
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.dconf;
|
||||
cfg = config.desktop.dconf;
|
||||
in
|
||||
{
|
||||
options.features.desktop.dconf.enable = mkEnableOption "Enable dconf";
|
||||
options.desktop.dconf.enable = mkEnableOption "Enable dconf";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.dconf.enable = true;
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.dwm;
|
||||
cfg = config.desktop.dwm;
|
||||
in
|
||||
{
|
||||
options.features.desktop.dwm.enable = mkEnableOption "Enable dwm";
|
||||
options.desktop.dwm.enable = mkEnableOption "Enable dwm";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
services = {
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.fonts;
|
||||
cfg = config.desktop.fonts;
|
||||
in
|
||||
{
|
||||
options.features.desktop.fonts.enable = mkEnableOption "Enable fonts";
|
||||
options.desktop.fonts.enable = mkEnableOption "Enable fonts";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
fonts = {
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.media.makemkv;
|
||||
cfg = config.desktop.media.makemkv;
|
||||
in
|
||||
{
|
||||
options.features.desktop.media.makemkv.enable = mkEnableOption "Enable makemkv";
|
||||
options.desktop.media.makemkv.enable = mkEnableOption "Enable makemkv";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
boot.kernelModules = [ "sg" ];
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.st;
|
||||
cfg = config.desktop.st;
|
||||
in
|
||||
{
|
||||
options.features.desktop.st.enable = mkEnableOption "Enable st";
|
||||
options.desktop.st.enable = mkEnableOption "Enable st";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.features.desktop.thunar;
|
||||
cfg = config.desktop.thunar;
|
||||
in
|
||||
{
|
||||
options.features.desktop.thunar.enable = mkEnableOption "Enable thunar";
|
||||
options.desktop.thunar.enable = mkEnableOption "Enable thunar";
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
programs.thunar = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue