diff --git a/nodes/hosts/common/home/jay/home.nix b/nodes/hosts/common/home/jay/home.nix index dcb08db..292631f 100644 --- a/nodes/hosts/common/home/jay/home.nix +++ b/nodes/hosts/common/home/jay/home.nix @@ -11,6 +11,7 @@ ./programs/bash.nix ./programs/git.nix ./programs/lazygit.nix + ./programs/oh-my-posh.nix ./programs/rofi.nix ./services/arrpc.nix ./services/fluidsynth.nix @@ -78,13 +79,6 @@ }; }; - - programs.oh-my-posh = { - enable = true; - enableBashIntegration = true; - useTheme = "blueish"; - }; - programs.rbw = { enable = true; # settings = { diff --git a/nodes/hosts/common/home/jay/programs/oh-my-posh.nix b/nodes/hosts/common/home/jay/programs/oh-my-posh.nix new file mode 100644 index 0000000..2c43908 --- /dev/null +++ b/nodes/hosts/common/home/jay/programs/oh-my-posh.nix @@ -0,0 +1,7 @@ +{ pkgs, ...}: { + programs.oh-my-posh = { + enable = true; + enableBashIntegration = true; + useTheme = "blueish"; + }; +}