fixing flake bugs

This commit is contained in:
draco 2024-08-23 01:07:06 -04:00
parent 7d17017e2c
commit 9be1768e56
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
{ {
description = "Home Manager configuration of nixos"; description = "Home Manager configuration of draco";
inputs = { inputs = {
# Specify the source of Home Manager and Nixpkgs. # Specify the source of Home Manager and Nixpkgs.
@ -15,7 +15,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
in { in {
homeConfigurations."nixos" = home-manager.lib.homeManagerConfiguration { homeConfigurations."draco" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
# Specify your home configuration modules here, for example, # Specify your home configuration modules here, for example,

View file

@ -27,7 +27,7 @@
# plain files is through 'home.file'. # plain files is through 'home.file'.
home.file = { home.file = {
".config/nvim" = { ".config/nvim" = {
source = dotfiles/nvim; source = "../dotfiles/nvim";
recursive = true; recursive = true;
}; };
@ -74,7 +74,7 @@
garbage = "sudo nix-collect-garbage --delete-older-than 7d"; garbage = "sudo nix-collect-garbage --delete-older-than 7d";
rbs = "sudo nixos-rebuild switch"; rbs = "sudo nixos-rebuild switch";
rebuild-all = "sudo nix-collect-garbage --delete-older-than 7d && 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";
}; };
}; };
}; };