diff options
| -rw-r--r-- | home/schererleander.nix | 24 | ||||
| -rw-r--r-- | hosts/adam/configuration.nix | 1 |
2 files changed, 13 insertions, 12 deletions
diff --git a/home/schererleander.nix b/home/schererleander.nix index 83e59e8..6bf67d5 100644 --- a/home/schererleander.nix +++ b/home/schererleander.nix @@ -29,8 +29,6 @@ in ++ optionals isDarwin [ iterm2 rectangle - bambu-studio - arduino-ide ] ++ optionals (!isDarwin) [ mpv @@ -51,16 +49,19 @@ in nx = { shells.zsh.enable = true; - editors.neovim = { - enable = true; - langs = { - python = true; - go = true; - latex = true; - nix = true; - lua = true; - typst = true; + editors = { + neovim = { + enable = true; + langs = { + python = true; + go = true; + latex = true; + nix = true; + lua = true; + typst = true; + }; }; + zed-editor.enable = true; }; programs.git.enable = true; @@ -69,6 +70,7 @@ in media = { spicetify.enable = true; nixcord.enable = true; + jellyfin-mpv-shim.enable = !isDarwin; }; productivity = { diff --git a/hosts/adam/configuration.nix b/hosts/adam/configuration.nix index 18f3d4f..609d831 100644 --- a/hosts/adam/configuration.nix +++ b/hosts/adam/configuration.nix @@ -54,7 +54,6 @@ in nx = { plymouth.enable = true; desktop.kde.enable = true; - steam.enable = true; dns.enable = true; hardware.bluetooth.enable = true; }; |
