diff --git a/home/base.nix b/home/base.nix index 22b0e2f..bc26397 100644 --- a/home/base.nix +++ b/home/base.nix @@ -175,30 +175,6 @@ ''; }; - programs.starship = { - enable = true; - enableBashIntegration = true; - enableZshIntegration = true; - settings = { - line_break = { - disabled = true; - }; - username = { - style_user = "bold blue"; - format = "[$user]($style)@"; - show_always = true; - }; - hostname = { - style = "bold cyan"; - format = "[$ssh_symbol$hostname]($style) "; - ssh_only = false; - }; - directory = { - style = "bold green"; - }; - }; - }; - programs.yazi = { enable = true; enableBashIntegration = true; diff --git a/home/desktop.nix b/home/desktop.nix index 9b5a659..319bad7 100644 --- a/home/desktop.nix +++ b/home/desktop.nix @@ -235,6 +235,30 @@ programs.rofi.enable = true; + programs.starship = { + enable = true; + enableBashIntegration = true; + enableZshIntegration = true; + settings = { + line_break = { + disabled = true; + }; + username = { + style_user = "bold blue"; + format = "[$user]($style)@"; + show_always = true; + }; + hostname = { + style = "bold cyan"; + format = "[$ssh_symbol$hostname]($style) "; + ssh_only = false; + }; + directory = { + style = "bold green"; + }; + }; + }; + home.packages = with pkgs; [ anki-bin gimp diff --git a/hosts/nixarr/configuration.nix b/hosts/nixarr/configuration.nix index ca2bbcf..90a6afd 100644 --- a/hosts/nixarr/configuration.nix +++ b/hosts/nixarr/configuration.nix @@ -10,6 +10,7 @@ # Include the results of the hardware scan. ./hardware-configuration.nix ../../nixos/base.nix + ../../nixos/nixarr.nix ]; networking.hostName = "nixarr"; diff --git a/nixos/nixarr.nix b/nixos/nixarr.nix new file mode 100644 index 0000000..5dfb2ad --- /dev/null +++ b/nixos/nixarr.nix @@ -0,0 +1,13 @@ +{ + pkgs, + nixarr, + ... +}: { + nixarr = { + enable = true; + sabnzbd = { + enable = true; + openFirewall = true; + }; + }; +}