From 690d99830bf01f1a705c3651ab66e02357581ebb Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Sun, 16 Jul 2023 18:41:00 +0100 Subject: [PATCH] Fix strange hyprland home error, temp disable fish direnv integration --- flake.nix | 2 +- home/shell/fish.nix | 2 +- hosts/Ronin/home.nix | 7 +------ 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/flake.nix b/flake.nix index 7aa18512..15f3842a 100644 --- a/flake.nix +++ b/flake.nix @@ -95,7 +95,7 @@ "tux@Monarch" = let hostname = "Monarch"; system = "aarch64-darwin"; - pkgs = inputs.nixpkgs.legacyPackages.${system}; + pkgs = nixpkgs.legacyPackages.${system}; in home-manager.lib.homeManagerConfiguration { inherit pkgs extraSpecialArgs; diff --git a/home/shell/fish.nix b/home/shell/fish.nix index 3e445bd7..57bb4be5 100644 --- a/home/shell/fish.nix +++ b/home/shell/fish.nix @@ -18,7 +18,7 @@ } ]; }; - direnv.enableFishIntegration = true; + # direnv.enableFishIntegration = true; fzf.enableFishIntegration = true; keychain.enableFishIntegration = true; starship.enableFishIntegration = true; diff --git a/hosts/Ronin/home.nix b/hosts/Ronin/home.nix index c17482c6..c280277f 100644 --- a/hosts/Ronin/home.nix +++ b/hosts/Ronin/home.nix @@ -1,13 +1,8 @@ -{ - pkgs, - inputs, - ... -}: let +{pkgs, ...}: let username = "elitherl"; homeDirectory = "/home/${username}"; in { imports = [ - inputs.hyprland.homeManagerModules.default ../../home/shell/fish.nix ../../home/git/work.nix ../../home/ssh/work.nix