From 7361a0275584b9cd986a22a02c10a205cdf678fa Mon Sep 17 00:00:00 2001 From: Sean Kovacs Date: Fri, 21 Nov 2025 09:49:32 -0500 Subject: [PATCH] changes --- home/all.nix | 6 ++---- home/vscode/default.nix | 4 ++++ system/all.nix | 8 +++++--- system/shell/fish.nix | 1 + 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/home/all.nix b/home/all.nix index c01177f..96a0ab6 100755 --- a/home/all.nix +++ b/home/all.nix @@ -30,6 +30,8 @@ deno prettier prettierd + musescore + mpv kde-rounded-corners kdePackages.partitionmanager @@ -53,10 +55,6 @@ cache.enable = true; }; - home.sessionVariables = { - EDITOR = "code"; - }; - # This value determines the Home Manager release that your # configuration is compatible with. This helps avoid breakage # when a new Home Manager release introduces backwards diff --git a/home/vscode/default.nix b/home/vscode/default.nix index 25a88f7..129d86a 100644 --- a/home/vscode/default.nix +++ b/home/vscode/default.nix @@ -11,6 +11,10 @@ let (lib.toUpper (builtins.substring 0 1 str)) + (builtins.substring 1 (builtins.stringLength str) str); in { + home.sessionVariables = { + EDITOR = "code"; + }; + catppuccin.vscode.profiles.default = { enable = true; settings = { diff --git a/system/all.nix b/system/all.nix index 380c749..49ed377 100755 --- a/system/all.nix +++ b/system/all.nix @@ -38,6 +38,11 @@ ]; }; + environment.sessionVariables = rec { + NIXOS_OZONE_WL = "1"; + EDITOR = "nvim"; + }; + boot = { plymouth = { @@ -149,9 +154,6 @@ firefoxpwa distrobox ]; - sessionVariables = { - NIXOS_OZONE_WL = "1"; - }; }; programs.gnupg.agent = { diff --git a/system/shell/fish.nix b/system/shell/fish.nix index 5cb36f2..53b4d74 100644 --- a/system/shell/fish.nix +++ b/system/shell/fish.nix @@ -15,6 +15,7 @@ enable = true; interactiveShellInit = '' set fish_greeting # Disable greeting + alias edit "nvim" ''; }; }