From b7a04d62e0800b97d2f15a173cd3a36ad28a6be3 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Mon, 17 Apr 2023 21:22:58 +0200 Subject: [PATCH] Try enabling fish like this --- configuration.nix | 5 +++++ home-manager.nix | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index f4fca52..75b0def 100644 --- a/configuration.nix +++ b/configuration.nix @@ -26,6 +26,11 @@ in }; }; + # Enable completions by nix + programs.fish.enable = true; + + environment.shells = [ pkgs.fish ]; + networking.hostName = "${hostname}"; # Define your hostname. # Pick only one of the below networking options. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. diff --git a/home-manager.nix b/home-manager.nix index 0fcaea8..d74010d 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -11,8 +11,6 @@ in # root home - programs.fish.enable = true; - # keep everything using home manager within this block home-manager.users.${user} = { pkgs, ... }: { home.username = "${user}";