From f2199d0342534bb16e5e09653b4189b96cd4ff60 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 --- nixos-config/configuration.nix | 5 +++++ nixos-config/home-manager.nix | 2 -- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/nixos-config/configuration.nix b/nixos-config/configuration.nix index f4fca52e..75b0defe 100644 --- a/nixos-config/configuration.nix +++ b/nixos-config/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/nixos-config/home-manager.nix b/nixos-config/home-manager.nix index 0fcaea86..d74010d5 100644 --- a/nixos-config/home-manager.nix +++ b/nixos-config/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}";