diff --git a/flake.nix b/flake.nix index 5faf8c9..12257cb 100644 --- a/flake.nix +++ b/flake.nix @@ -63,7 +63,7 @@ let pkgs = nixpkgs.legacyPackages.x86_64-linux; nhs = pkgs.writeShellScriptBin "nhs" '' - nh os switch --hostname framework path:. "$@" + nh os switch --hostname framework --impure path:. "$@" ''; in pkgs.mkShell { diff --git a/home.nix b/home.nix index adc2d5d..78ededb 100644 --- a/home.nix +++ b/home.nix @@ -154,14 +154,11 @@ enable = true; enableBashIntegration = true; settings = { - format = "$directory$git_status$nix_shell$cmd_duration$line_break$character"; - directory.truncation_length = 3; - git_status.style = "red"; - git_branch.disabled = true; - nix_shell.format = "[$symbol]($style) "; cmd_duration.min_time = 500; - character.success_symbol = "[❯](bold green)"; - character.error_symbol = "[❯](bold red)"; + directory.truncation_length = 3; + nix_shell.format = "[$symbol]($style) "; + battery.disabled = false; + git_branch.disabled = true; }; }; @@ -216,10 +213,6 @@ programs.bash = { enable = true; enableCompletion = true; - historyControl = [ "ignoredups" "erasedups" ]; - historySize = 50000; - historyFileSize = 100000; - shellOptions = [ "histappend" "checkwinsize" "globstar" ]; shellAliases = { "dr" = "direnv reload"; "da" = "direnv allow"; @@ -271,6 +264,7 @@ keybindings = { "ctrl+shift+c" = "copy_and_clear_or_interrupt"; "ctrl+shift+v" = "paste_from_clipboard"; + "ctrl+v" = "paste_from_clipboard"; }; themeFile = "GitHub_Dark_High_Contrast"; }; @@ -451,8 +445,6 @@ ]; }; - xdg.userDirs.enable = true; - gtk = { enable = true; gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;