From fd8044b62fd248d891fa896e546373412e8dde07 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Sat, 27 Apr 2024 16:49:07 +0200 Subject: [PATCH] fix missing { --- users/jopejoe1/default.nix | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/users/jopejoe1/default.nix b/users/jopejoe1/default.nix index fd588fc..4e17fdc 100644 --- a/users/jopejoe1/default.nix +++ b/users/jopejoe1/default.nix @@ -29,7 +29,7 @@ homeDirectory = config.users.users.jopejoe1.home; stateVersion = config.system.stateVersion; }; - programs = + programs = { nushell = { enable = true; extraConfig = '' @@ -51,24 +51,24 @@ } } ''; - shellAliases = { - vi = "nvim"; - vim = "nvim"; - }; + shellAliases = { + vi = "nvim"; + vim = "nvim"; }; - carapace.enable = true; - carapace.enableNushellIntegration = true; + }; + carapace.enable = true; + carapace.enableNushellIntegration = true; - starship = { - enable = true; - settings = { - add_newline = true; - character = { - success_symbol = "[➜](bold green)"; - error_symbol = "[➜](bold red)"; - }; + starship = { + enable = true; + settings = { + add_newline = true; + character = { + success_symbol = "[➜](bold green)"; + error_symbol = "[➜](bold red)"; }; }; }; }; + }; }