Compare commits

..

No commits in common. "8344ad81e05be67d5a317bf6f9a51b7d48c8cf97" and "f09b4bbb3d621fc053d0412c73d601b97fb0f8fd" have entirely different histories.

2 changed files with 6 additions and 14 deletions

View file

@ -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 {

View file

@ -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;