feat: ${namespace} -> marleyos

There was little point to doing this anyway as project-wide find &
replace is trivial.
This commit is contained in:
punkfairie 2024-11-16 22:34:40 -08:00
parent b2a053e3f2
commit 15372b7726
Signed by: punkfairie
GPG key ID: A509E8F77FB9D696
48 changed files with 129 additions and 152 deletions

View file

@ -1,11 +1,10 @@
{ {
lib, lib,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib.${namespace}) enabled; inherit (lib.marleyos) enabled;
in in
{ {
home.keyboard.options = [ "apple:alupckeys" ]; home.keyboard.options = [ "apple:alupckeys" ];
@ -20,7 +19,7 @@ in
manix manix
]; ];
${namespace} = { marleyos = {
isDesktop = true; isDesktop = true;
appearance = { appearance = {

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule enabled; inherit (lib.marleyos) mkEnableModule enabled;
cfg = config.${namespace}.appearance.base; cfg = config.marleyos.appearance.base;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "appearance.base"; options = mkEnableModule "appearance.base";
@ -20,9 +19,9 @@ in
maple-mono-NF maple-mono-NF
]; ];
${theme.colors.base}.pointerCursor = enabled; "${colors.base}".pointerCursor = enabled;
${namespace}.theme = { marleyos.theme = {
default = "dark"; default = "dark";
dark = { dark = {
@ -36,7 +35,7 @@ in
}; };
}; };
${namespace}.theme.icons = { marleyos.theme.icons = {
package = pkgs.kora-icon-theme; package = pkgs.kora-icon-theme;
name = "kora"; name = "kora";
}; };

View file

@ -6,10 +6,10 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule enabled; inherit (lib.marleyos) mkEnableModule enabled;
cfg = config.${namespace}.appearance.gtk; cfg = config.marleyos.appearance.gtk;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "appearance.gtk"; options = mkEnableModule "appearance.gtk";
@ -18,7 +18,7 @@ in
gtk = { gtk = {
enable = true; enable = true;
"${theme.colors.theme}" = enabled; "${colors.base}" = enabled;
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc"; gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
}; };

View file

@ -1,22 +1,21 @@
{ {
lib, lib,
config, config,
namespace,
inputs, inputs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.appearance.qt; cfg = config.marleyos.appearance.qt;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "appearance.qt"; options = mkEnableModule "appearance.qt";
config = mkIf cfg.enable { config = mkIf cfg.enable {
xdg.configFile = mkIf (theme.colors.base == "rose-pine") { xdg.configFile = mkIf (colors.base == "rose-pine") {
"qt5ct/colors/rose-pine.conf" = { "qt5ct/colors/rose-pine.conf" = {
source = "${inputs.rose-pine-qt5ct}/rose-pine.conf"; source = "${inputs.rose-pine-qt5ct}/rose-pine.conf";
}; };

View file

@ -1,17 +1,16 @@
{ {
lib, lib,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib.${namespace}) enabled; inherit (lib.marleyos) enabled;
in in
{ {
# Anything in this folder should not include an enable/disable option. This is # Anything in this folder should not include an enable/disable option. This is
# the only folder that is always applied. # the only folder that is always applied.
config = { config = {
${namespace}.my = { marleyos.my = {
name = "marley"; name = "marley";
username = "punkfairie"; username = "punkfairie";
fullName = "Marley Rae"; fullName = "Marley Rae";

View file

@ -1,13 +1,12 @@
{ {
config, config,
namespace,
lib, lib,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkMerge mkIf; inherit (lib) mkMerge mkIf;
inherit (config.${namespace}) isDesktop; inherit (config.marleyos) isDesktop;
in in
{ {
config = { config = {

View file

@ -1,9 +1,9 @@
{ lib, namespace, ... }: { lib, ... }:
let let
inherit (lib) mkOption types; inherit (lib) mkOption types;
in in
{ {
options.${namespace}.isDesktop = mkOption { options.marleyos.isDesktop = mkOption {
type = with types; bool; type = with types; bool;
default = false; default = false;
description = "Whether this machine is used as a graphical desktop."; description = "Whether this machine is used as a graphical desktop.";

View file

@ -1,5 +1,4 @@
{ {
namespace,
lib, lib,
config, config,
... ...
@ -13,7 +12,7 @@ let
; ;
in in
{ {
options.${namespace}.my = rec { options.marleyos.my = rec {
name = mkOption { name = mkOption {
type = with types; str; type = with types; str;
default = config.snowfallorg.user.name or "marley"; default = config.snowfallorg.user.name or "marley";
@ -53,13 +52,13 @@ in
config = config =
let let
cfg = config.${namespace}.my; cfg = config.marleyos.my;
in in
{ {
assertions = [ assertions = [
{ {
assertion = cfg.name != null; assertion = cfg.name != null;
message = "${namespace}.my.name must be set."; message = "marleyos.my.name must be set.";
} }
]; ];

View file

@ -1,6 +1,5 @@
{ {
lib, lib,
namespace,
config, config,
pkgs, pkgs,
... ...
@ -14,7 +13,7 @@ let
mkIf mkIf
mkDefault mkDefault
; ;
cfg = config.${namespace}.theme; cfg = config.marleyos.theme;
colorThemes = lib.types.enum [ colorThemes = lib.types.enum [
"rose-pine" "rose-pine"
@ -83,7 +82,7 @@ let
}; };
in in
{ {
options.${namespace}.theme = { options.marleyos.theme = {
colors = rec { colors = rec {
default = mkOption { default = mkOption {
type = with types; str; type = with types; str;

View file

@ -1,23 +1,22 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
inputs, inputs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.amfora; cfg = config.marleyos.programs.amfora;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
themeFiles = { themeFiles = {
rose-pine = "${inputs.rose-pine-amfora}/themes/rose-pine.toml"; rose-pine = "${inputs.rose-pine-amfora}/themes/rose-pine.toml";
}; };
themeFile = themeFiles.${theme.colors.base}; themeFile = themeFiles."${colors.base}";
in in
{ {
options = mkEnableModule "programs.amfora"; options = mkEnableModule "programs.amfora";
@ -55,7 +54,7 @@ in
underline = true underline = true
# }}} # }}}
highlight_style = "${theme.colors.base}" highlight_style = "${colors.base}"
# Defaults {{{ # Defaults {{{
[auth] [auth]

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule enabled; inherit (lib.marleyos) mkEnableModule enabled;
cfg = config.${namespace}.programs.bat; cfg = config.marleyos.programs.bat;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.bat"; options = mkEnableModule "programs.bat";
@ -24,7 +23,7 @@ in
batman batman
]; ];
"${theme.colors.base}" = enabled; "${colors.base}" = enabled;
config = { config = {
style = "auto"; style = "auto";

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule enabled; inherit (lib.marleyos) mkEnableModule enabled;
cfg = config.${namespace}.programs.btop; cfg = config.marleyos.programs.btop;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.btop"; options = mkEnableModule "programs.btop";
@ -18,7 +17,7 @@ in
programs.btop = { programs.btop = {
enable = true; enable = true;
"${theme.colors.base}" = enabled; "${colors.base}" = enabled;
settings = { settings = {
theme_background = false; theme_background = false;

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf enabled; inherit (lib) mkIf enabled;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.cava; cfg = config.marleyos.programs.cava;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.cava"; options = mkEnableModule "programs.cava";
@ -17,7 +16,8 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
enable = true; enable = true;
"${theme.colors.base}" = enabled; # "${colors.base}" = enabled;
rose-pine.enable = true;
# TODO: disable this when mpd is not enabled? Can that be detected on non # TODO: disable this when mpd is not enabled? Can that be detected on non
# NixOS systems? # NixOS systems?

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.cheat; cfg = config.marleyos.programs.cheat;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
toYAML = (pkgs.formats.yaml { }).generate; toYAML = (pkgs.formats.yaml { }).generate;
in in
@ -24,7 +23,7 @@ in
xdg.configFile."cheat/conf.yml".source = toYAML "conf.yml" { xdg.configFile."cheat/conf.yml".source = toYAML "conf.yml" {
colorize = true; colorize = true;
style = "${theme.colors.base}"; style = "${colors.base}";
formatter = "terminal256"; formatter = "terminal256";
pager = "less -FRX"; pager = "less -FRX";

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.curl; cfg = config.marleyos.programs.curl;
in in
{ {
options = mkEnableModule "programs.curl"; options = mkEnableModule "programs.curl";

View file

@ -1,14 +1,13 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.eza; cfg = config.marleyos.programs.eza;
in in
{ {
options = mkEnableModule "programs.eza"; options = mkEnableModule "programs.eza";

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.figlet; cfg = config.marleyos.programs.figlet;
in in
{ {
options = mkEnableModule "programs.figlet"; options = mkEnableModule "programs.figlet";

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule enabled; inherit (lib.marleyos) mkEnableModule enabled;
cfg = config.${namespace}.programs.fish; cfg = config.marleyos.programs.fish;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.fish"; options = mkEnableModule "programs.fish";
@ -35,7 +34,7 @@ in
programs.fish = { programs.fish = {
enable = true; enable = true;
${theme.colors.name} = enabled; "${colors.name}" = enabled;
preferAbbrs = true; preferAbbrs = true;

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf enabled; inherit (lib) mkIf enabled;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.fzf; cfg = config.marleyos.programs.fzf;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
has-ripgrep = config.programs.ripgrep.enable; has-ripgrep = config.programs.ripgrep.enable;
has-fd = config.programs.fd.enable; has-fd = config.programs.fd.enable;
@ -26,7 +25,7 @@ in
programs.fzf = { programs.fzf = {
enable = true; enable = true;
"${theme.colors.base}" = enabled; "${colors.base}" = enabled;
defaultOptions = [ defaultOptions = [
"--margin=10%,5%" "--margin=10%,5%"

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.gh; cfg = config.marleyos.programs.gh;
in in
{ {
options = mkEnableModule "programs.gh"; options = mkEnableModule "programs.gh";

View file

@ -7,7 +7,7 @@
let let
inherit (lib) mkIf; inherit (lib) mkIf;
cfg = config.${namespace}.programs.git; cfg = config.marleyos.programs.git;
in in
{ {
config = mkIf cfg.enable { config = mkIf cfg.enable {

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.git; cfg = config.marleyos.programs.git;
in in
{ {
options = mkEnableModule "programs.git"; options = mkEnableModule "programs.git";
@ -73,7 +72,7 @@ in
# options = { # options = {
# navigate = true; # navigate = true;
# # TODO: Add to rose-pine-nix # # TODO: Add to rose-pine-nix
# syntax-theme = "${theme.colors.base}"; # syntax-theme = "${colors.base}";
# features = "mellow-barbet"; # features = "mellow-barbet";
# true-color = "always"; # true-color = "always";
# hyperlinks = true; # hyperlinks = true;

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.glow; cfg = config.marleyos.programs.glow;
toYAML = (pkgs.formats.yaml { }).generate; toYAML = (pkgs.formats.yaml { }).generate;
in in
{ {

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.gpg; cfg = config.marleyos.programs.gpg;
in in
{ {
options = mkEnableModule "programs.gpg"; options = mkEnableModule "programs.gpg";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.hyfetch; cfg = config.marleyos.programs.hyfetch;
in in
{ {
options = mkEnableModule "programs.hyfetch"; options = mkEnableModule "programs.hyfetch";

View file

@ -8,7 +8,7 @@
let let
inherit (lib) mkIf; inherit (lib) mkIf;
cfg = config.${namespace}.programs.hyfetch; cfg = config.marleyos.programs.hyfetch;
in in
{ {
config = mkIf cfg.enable { config = mkIf cfg.enable {

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.journalctl; cfg = config.marleyos.programs.journalctl;
in in
{ {
options = mkEnableModule "programs.journalctl"; options = mkEnableModule "programs.journalctl";

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.just; cfg = config.marleyos.programs.just;
in in
{ {
options = mkEnableModule "programs.just"; options = mkEnableModule "programs.just";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.lazygit; cfg = config.marleyos.programs.lazygit;
has-delta = config.programs.git.delta.enable; has-delta = config.programs.git.delta.enable;
has-difft = config.programs.git.difftastic.enable; has-difft = config.programs.git.difftastic.enable;
in in

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.less; cfg = config.marleyos.programs.less;
in in
{ {
options = mkEnableModule "programs.less"; options = mkEnableModule "programs.less";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.man; cfg = config.marleyos.programs.man;
in in
{ {
options = mkEnableModule "programs.man"; options = mkEnableModule "programs.man";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.ncmpcpp; cfg = config.marleyos.programs.ncmpcpp;
in in
{ {
options = mkEnableModule "programs.ncmpcpp"; options = mkEnableModule "programs.ncmpcpp";

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.neo; cfg = config.marleyos.programs.neo;
in in
{ {
options = mkEnableModule "programs.neo"; options = mkEnableModule "programs.neo";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.rbw; cfg = config.marleyos.programs.rbw;
in in
{ {
options = mkEnableModule "programs.rbw"; options = mkEnableModule "programs.rbw";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.ripgrep; cfg = config.marleyos.programs.ripgrep;
in in
{ {
options = mkEnableModule "programs.ripgrep"; options = mkEnableModule "programs.ripgrep";

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.ssh; cfg = config.marleyos.programs.ssh;
in in
{ {
options = mkEnableModule "programs.ssh"; options = mkEnableModule "programs.ssh";

View file

@ -1,7 +1,6 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
@ -11,10 +10,10 @@ let
mkForce mkForce
concatStrings concatStrings
; ;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.starship; cfg = config.marleyos.programs.starship;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.starship"; options = mkEnableModule "programs.starship";
@ -27,7 +26,7 @@ in
programs.starship = { programs.starship = {
enable = true; enable = true;
"${theme.colors.base}" = enabled; "${colors.base}" = enabled;
settings = mkIf config.programs.starship.rose-pine.enabled { settings = mkIf config.programs.starship.rose-pine.enabled {
format = mkForce (concatStrings [ format = mkForce (concatStrings [

View file

@ -7,7 +7,7 @@
let let
inherit (lib) mkIf mkForce; inherit (lib) mkIf mkForce;
cfg = config.${namespace}.programs.starship; cfg = config.marleyos.programs.starship;
in in
{ {
config = mkIf cfg.enable { config = mkIf cfg.enable {

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.systemctl; cfg = config.marleyos.programs.systemctl;
in in
{ {
options = mkEnableModule "programs.systemctl"; options = mkEnableModule "programs.systemctl";

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.tmux; cfg = config.marleyos.programs.tmux;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.tmux"; options = mkEnableModule "programs.tmux";
@ -19,7 +18,7 @@ in
programs.tmux = { programs.tmux = {
enable = true; enable = true;
rose-pine = mkIf (theme.colors.base == "rose-pine") { rose-pine = mkIf (colors.base == "rose-pine") {
enable = true; enable = true;
extraConfig = # tmux extraConfig = # tmux
'' ''

View file

@ -1,16 +1,15 @@
{ {
lib, lib,
config, config,
namespace,
pkgs, pkgs,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.wezterm; cfg = config.marleyos.programs.wezterm;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
isGenericLinux = config.targets.genericLinux.enable; isGenericLinux = config.targets.genericLinux.enable;
in in
@ -38,7 +37,7 @@ in
config.enable_tab_bar = false config.enable_tab_bar = false
config.color_scheme = "${theme.colors.base}" config.color_scheme = "${colors.base}"
config.font = wezterm.font_with_fallback({ config.font = wezterm.font_with_fallback({
{ {

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.wget; cfg = config.marleyos.programs.wget;
in in
{ {
options = mkEnableModule "programs.wget"; options = mkEnableModule "programs.wget";

View file

@ -1,15 +1,14 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf enabled; inherit (lib) mkIf enabled;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.zathura; cfg = config.marleyos.programs.zathura;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
in in
{ {
options = mkEnableModule "programs.zathura"; options = mkEnableModule "programs.zathura";
@ -18,7 +17,7 @@ in
programs.zathura = { programs.zathura = {
enable = true; enable = true;
"${theme.colors.base}" = enabled; "${colors.base}" = enabled;
}; };
}; };
} }

View file

@ -6,9 +6,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.programs.zoxide; cfg = config.marleyos.programs.zoxide;
in in
{ {
options = mkEnableModule "programs.zoxide"; options = mkEnableModule "programs.zoxide";

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.services.clipboard; cfg = config.marleyos.services.clipboard;
in in
{ {
options = mkEnableModule "services.clipboard"; options = mkEnableModule "services.clipboard";

View file

@ -1,7 +1,6 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
@ -11,12 +10,12 @@ let
disabled disabled
mkMerge mkMerge
; ;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.services.dunst; cfg = config.marleyos.services.dunst;
inherit (config.${namespace}) theme; inherit (config.marleyos.theme) colors;
isRosePine = theme.colors.base == "rose-pine"; isRosePine = colors.base == "rose-pine";
in in
{ {
options = mkEnableModule "services.dunst"; options = mkEnableModule "services.dunst";
@ -28,7 +27,7 @@ in
# I don't want to use the rose-pine icons; also don't want to deal with # I don't want to use the rose-pine icons; also don't want to deal with
# the drop-in weirdness. # the drop-in weirdness.
# TODO: Convert dunst.rose-pine to attr set to fix this. # TODO: Convert dunst.rose-pine to attr set to fix this.
"${theme.colors.base}" = if isRosePine then disabled else enabled; "${colors.base}" = if isRosePine then disabled else enabled;
settings = mkMerge [ settings = mkMerge [
### Rose Pine ### ### Rose Pine ###

View file

@ -7,9 +7,9 @@
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.services.syncthing; cfg = config.marleyos.services.syncthing;
in in
{ {
options = mkEnableModule "services.syncthing"; options = mkEnableModule "services.syncthing";

View file

@ -1,14 +1,13 @@
{ {
lib, lib,
config, config,
namespace,
... ...
}: }:
let let
inherit (lib) mkIf; inherit (lib) mkIf;
inherit (lib.${namespace}) mkEnableModule; inherit (lib.marleyos) mkEnableModule;
cfg = config.${namespace}.xorg.xsession; cfg = config.marleyos.xorg.xsession;
in in
{ {
options = mkEnableModule "xorg.xsession"; options = mkEnableModule "xorg.xsession";