From 9be1768e5680bb317a33d97b9986399a714291aa Mon Sep 17 00:00:00 2001 From: draco Date: Fri, 23 Aug 2024 01:07:06 -0400 Subject: [PATCH] fixing flake bugs --- home-manager/flake.nix | 4 ++-- home-manager/home.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/home-manager/flake.nix b/home-manager/flake.nix index cf4f9b8..864c0cf 100644 --- a/home-manager/flake.nix +++ b/home-manager/flake.nix @@ -1,5 +1,5 @@ { - description = "Home Manager configuration of nixos"; + description = "Home Manager configuration of draco"; inputs = { # Specify the source of Home Manager and Nixpkgs. @@ -15,7 +15,7 @@ system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { - homeConfigurations."nixos" = home-manager.lib.homeManagerConfiguration { + homeConfigurations."draco" = home-manager.lib.homeManagerConfiguration { inherit pkgs; # Specify your home configuration modules here, for example, diff --git a/home-manager/home.nix b/home-manager/home.nix index 8ba12aa..fb187e3 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -27,7 +27,7 @@ # plain files is through 'home.file'. home.file = { ".config/nvim" = { - source = dotfiles/nvim; + source = "../dotfiles/nvim"; recursive = true; }; @@ -74,7 +74,7 @@ garbage = "sudo nix-collect-garbage --delete-older-than 7d"; rbs = "sudo nixos-rebuild switch"; rebuild-all = "sudo nix-collect-garbage --delete-older-than 7d && sudo nixos-rebuild switch"; - make-tide-prompt = "tide configure --auto --style=Rainbow --prompt_colors='True color' --show_time='24-hour format' --rainbow_prompt_separators=Vertical --powerline_prompt_heads=Round --powerline_prompt_tails=Flat --powerline_prompt_style='Two lines, character' --prompt_connection=Disconnected --powerline_right_prompt_frame=No --prompt_spacing=Compact --icons='Many icons' --transient=No" + make-tide-prompt = "tide configure --auto --style=Rainbow --prompt_colors='True color' --show_time='24-hour format' --rainbow_prompt_separators=Vertical --powerline_prompt_heads=Round --powerline_prompt_tails=Flat --powerline_prompt_style='Two lines, character' --prompt_connection=Disconnected --powerline_right_prompt_frame=No --prompt_spacing=Compact --icons='Many icons' --transient=No"; }; }; };