Skip to content

Commit

Permalink
oh-my-posh: add module
Browse files Browse the repository at this point in the history
  • Loading branch information
arjan-s authored and rycee committed Nov 2, 2022
1 parent 183a62f commit 04e8440
Show file tree
Hide file tree
Showing 9 changed files with 184 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,9 @@ Makefile @thiagokokada

/modules/programs/octant.nix @06kellyjac

/modules/programs/oh-my-posh.nix @arjan-s
/tests/modules/programs/oh-my-posh @arjan-s

/modules/programs/opam.nix @marsam

/modules/programs/openssh.nix @rycee
Expand Down
7 changes: 7 additions & 0 deletions modules/misc/news.nix
Original file line number Diff line number Diff line change
Expand Up @@ -800,6 +800,13 @@ in
A new module is available: 'programs.k9s'.
'';
}

{
time = "2022-11-01T23:57:50+00:00";
message = ''
A new module is available: 'programs.oh-my-posh'.
'';
}
];
};
}
1 change: 1 addition & 0 deletions modules/modules.nix
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ let
./programs/obs-studio.nix
./programs/octant.nix
./programs/offlineimap.nix
./programs/oh-my-posh.nix
./programs/opam.nix
./programs/pandoc.nix
./programs/password-store.nix
Expand Down
94 changes: 94 additions & 0 deletions modules/programs/oh-my-posh.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
{ config, lib, pkgs, ... }:

with lib;
let

cfg = config.programs.oh-my-posh;

jsonFormat = pkgs.formats.json { };

configArgument = if cfg.settings != { } then
"--config ${config.xdg.configHome}/oh-my-posh/config.json"
else if cfg.useTheme != null then
"--config ${cfg.package}/share/oh-my-posh/themes/${cfg.useTheme}.omp.json"
else
"";

in {
meta.maintainers = [ maintainers.arjan-s ];

options.programs.oh-my-posh = {
enable = mkEnableOption "oh-my-posh, a prompt theme engine for any shell";

package = mkPackageOption pkgs "oh-my-posh" { };

settings = mkOption {
type = jsonFormat.type;
default = { };
example = literalExpression ''
builtins.fromJSON (builtins.unsafeDiscardStringContext (builtins.readFile "''${pkgs.oh-my-posh}/share/oh-my-posh/themes/space.omp.json"))'';
description = ''
Configuration written to
<filename>$XDG_CONFIG_HOME/oh-my-posh/config.json</filename>. See
<link xlink:href="https://ohmyposh.dev/docs/configuration/overview"/>
for details. The <literal>useTheme</literal> option is ignored when this
option is used.
'';
};

useTheme = mkOption {
type = types.nullOr types.str;
default = null;
description = ''
Use one of the official themes. This should be a name from this list:
<link xlink:href="https://ohmyposh.dev/docs/themes"/>. Because a theme
is essentially a configuration file, this option is not used when a
<literal>configFile</literal> is set.
'';
};

enableBashIntegration = mkOption {
type = types.bool;
default = true;
description = ''
Whether to enable Bash integration.
'';
};

enableZshIntegration = mkOption {
type = types.bool;
default = true;
description = ''
Whether to enable Zsh integration.
'';
};

enableFishIntegration = mkOption {
type = types.bool;
default = true;
description = ''
Whether to enable Fish integration.
'';
};
};

config = mkIf cfg.enable {
home.packages = [ cfg.package ];

xdg.configFile."oh-my-posh/config.json" = mkIf (cfg.settings != { }) {
source = jsonFormat.generate "oh-my-posh-settings" cfg.settings;
};

programs.bash.initExtra = mkIf cfg.enableBashIntegration ''
eval "$(${cfg.package}/bin/oh-my-posh init bash ${configArgument})"
'';

programs.zsh.initExtra = mkIf cfg.enableZshIntegration ''
eval "$(${cfg.package}/bin/oh-my-posh init zsh ${configArgument})"
'';

programs.fish.shellInit = mkIf cfg.enableFishIntegration ''
${cfg.package}/bin/oh-my-posh init fish ${configArgument} | source
'';
};
}
1 change: 1 addition & 0 deletions tests/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ import nmt {
./modules/programs/nix-index
./modules/programs/nnn
./modules/programs/nushell
./modules/programs/oh-my-posh
./modules/programs/pandoc
./modules/programs/pet
./modules/programs/pistol
Expand Down
21 changes: 21 additions & 0 deletions tests/modules/programs/oh-my-posh/bash.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ ... }:

{
programs = {
bash.enable = true;

oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};

test.stubs.oh-my-posh = { };

nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
'/bin/oh-my-posh init bash --config'
'';
}
5 changes: 5 additions & 0 deletions tests/modules/programs/oh-my-posh/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
oh-my-posh-bash = ./bash.nix;
oh-my-posh-zsh = ./zsh.nix;
oh-my-posh-fish = ./fish.nix;
}
28 changes: 28 additions & 0 deletions tests/modules/programs/oh-my-posh/fish.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib, ... }:

{
programs = {
fish.enable = true;

oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};

# Needed to avoid error with dummy fish package.
xdg.dataFile."fish/home-manager_generated_completions".source =
lib.mkForce (builtins.toFile "empty" "");

test.stubs = {
oh-my-posh = { };
fish = { };
};

nmt.script = ''
assertFileExists home-files/.config/fish/config.fish
assertFileContains \
home-files/.config/fish/config.fish \
'/bin/oh-my-posh init fish --config'
'';
}
24 changes: 24 additions & 0 deletions tests/modules/programs/oh-my-posh/zsh.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ ... }:

{
programs = {
zsh.enable = true;

oh-my-posh = {
enable = true;
useTheme = "jandedobbeleer";
};
};

test.stubs = {
oh-my-posh = { };
zsh = { };
};

nmt.script = ''
assertFileExists home-files/.zshrc
assertFileContains \
home-files/.zshrc \
'/bin/oh-my-posh init zsh --config'
'';
}

0 comments on commit 04e8440

Please sign in to comment.