diff --git a/README.md b/README.md index 949f6b2f..67f82630 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ This repo is managed with Nix + GNU stow - `wpa_cli` ```bash add_network - # wil return a number + # will return a number set_network ssid "" set_network psk "" select_network 0 diff --git a/nix/configurations/vanadium/home/xmonad/xmonad.hs b/nix/configurations/vanadium/home/xmonad/xmonad.hs index 2a11cb98..d43896b6 100644 --- a/nix/configurations/vanadium/home/xmonad/xmonad.hs +++ b/nix/configurations/vanadium/home/xmonad/xmonad.hs @@ -165,7 +165,7 @@ myManageHook = composeAll [ isNautilusPreviewer --> customFloating centeredFloat , isPavucontrol --> customFloating centeredFloat - , isFeh --> doF copyToAll <> customFloating buttomRightFloat + , isFeh --> doF copyToAll <> customFloating bottomRightFloat , isMinder --> customFloating centeredFloat , isDiscord --> doShift chatWS , isEvolution --> doShift chatWS @@ -177,7 +177,7 @@ myManageHook = -- Note: some rules here are overlapping, the first one will take the precedence (composeOne) -- e.g. firefoxpip is a utility window <> composeOne - [ isFirefoxPip -?> doF copyToAll <> customFloating buttomRightFloat + [ isFirefoxPip -?> doF copyToAll <> customFloating bottomRightFloat , isUtility -?> doIgnore , isDialog -?> customFloating centeredFloat , isEvolutionComposer -?> customFloating centeredFloat @@ -399,11 +399,11 @@ chatWS = myWorkspaces !! 3 multimediaWS :: WorkspaceId multimediaWS = myWorkspaces !! 6 -centeredFloat, smallFloat, fullFloat, buttomRightFloat :: W.RationalRect +centeredFloat, smallFloat, fullFloat, bottomRightFloat :: W.RationalRect centeredFloat = W.RationalRect (1%9) (1%9) (7%9) (7%9) smallFloat = W.RationalRect (3%5) (3%5) (2%7) (2%7) fullFloat = W.RationalRect 0 0 1 1 -buttomRightFloat = W.RationalRect (1%2) (1%2) (1%2) (1%2) +bottomRightFloat = W.RationalRect (1%2) (1%2) (1%2) (1%2) xmobarConfig :: StatusBarConfig xmobarConfig = statusBarProp "xmobar -x 0" (pure myPrettyPrinter) diff --git a/nix/configurations/vanadium/nixos/connectivity.nix b/nix/configurations/vanadium/nixos/connectivity.nix index 92c3453b..9c5e8d05 100644 --- a/nix/configurations/vanadium/nixos/connectivity.nix +++ b/nix/configurations/vanadium/nixos/connectivity.nix @@ -57,7 +57,7 @@ extraHosts = '' # - # Generated from nixos configuartion + # Generated from nixos configuration # # This is the fascist one, just block it because I can't tell diff --git a/nix/disko/tungsten/btrfs.nix b/nix/disko/tungsten/btrfs.nix index 66201153..5c4adb48 100644 --- a/nix/disko/tungsten/btrfs.nix +++ b/nix/disko/tungsten/btrfs.nix @@ -54,7 +54,7 @@ # Use btrfs over ext4 for: # - compression - # nix store can be shrinked using this feature + # nix store can be shrunk using this feature # - more transparent partitions (subvolumes) # no more "I need more space here and not there" btrfs = { diff --git a/nix/homeModules/common/firefox.nix b/nix/homeModules/common/firefox.nix index 18981f77..eb586087 100644 --- a/nix/homeModules/common/firefox.nix +++ b/nix/homeModules/common/firefox.nix @@ -78,7 +78,7 @@ in # No "browser.urlbar.suggest.quicksuggest.sponsored" = false; - # Pasword manager + # Password manager "signon.rememberSignons" = false; "services.passwordSavingEnabled" = false; "pref.privacy.disable_button.view_passwords" = false; diff --git a/nix/nixosModules/common/system-nixconf.nix b/nix/nixosModules/common/system-nixconf.nix index cbce71b6..5f10bee3 100644 --- a/nix/nixosModules/common/system-nixconf.nix +++ b/nix/nixosModules/common/system-nixconf.nix @@ -8,7 +8,7 @@ package = lib.mkDefault pkgs.nix; settings = { - # it is impossible to anser in nix-direnv, so we force it to off. + # it is impossible to anwser to the prompt in nix-direnv, so we force it to off. # https://github.com/nix-community/nix-direnv/issues/678 accept-flake-config = lib.mkForce false;