Skip to content

Commit

Permalink
fix(fish): fixed problem with generation of rebuild alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Wittano committed Dec 14, 2023
1 parent 07e5dce commit 1d3d6d8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions modules/shell/fish.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ in
shellAliases =
let
host = builtins.replaceStrings [ "-dev" ] [ "" ] hostName;
rebuild = name: ''
sudo nixos-rebuild switch --flake ${config.environment.variables.NIX_DOTFILES}#${name} --impure
'';
rebuild = name: "sudo nixos-rebuild switch --flake ${config.environment.variables.NIX_DOTFILES}#${name} --impure";
in
{
xc = "xprop | grep CLASS";
Expand Down

0 comments on commit 1d3d6d8

Please sign in to comment.