diff --git a/flake.nix b/flake.nix index d852125..c29e58c 100644 --- a/flake.nix +++ b/flake.nix @@ -36,7 +36,7 @@ rahu = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; - specialArgs = {inherit inputs;}; + specialArgs = { inherit inputs; }; modules = [ ./hosts/rahu/configuration.nix ]; diff --git a/hosts/default/home.nix b/hosts/default/home.nix index 11a902b..ef8f2a3 100644 --- a/hosts/default/home.nix +++ b/hosts/default/home.nix @@ -53,9 +53,9 @@ editor.cursor-shape.insert = "bar"; editor.line-number = "relative"; editor.idle-timeout = 0; - keys.normal."X" = ["extend_line_up" "extend_to_line_bounds"]; - keys.select."X" = ["extend_line_up" "extend_to_line_bounds"]; - keys.normal."C-g" = [":new" ":insert-output ${pkgs.lazygit}/bin/lazygit" ":buffer-close!" ":redraw"]; + keys.normal."X" = [ "extend_line_up" "extend_to_line_bounds" ]; + keys.select."X" = [ "extend_line_up" "extend_to_line_bounds" ]; + keys.normal."C-g" = [ ":new" ":insert-output ${pkgs.lazygit}/bin/lazygit" ":buffer-close!" ":redraw" ]; }; };