tree-wide: fix typos using typos

This commit is contained in:
Primrose 2026-01-31 23:47:13 +01:00
parent d99232b760
commit 2ffb6d64bf
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
6 changed files with 9 additions and 9 deletions

View file

@ -12,7 +12,7 @@ This repo is managed with Nix + GNU stow
- `wpa_cli` - `wpa_cli`
```bash ```bash
add_network add_network
# wil return a number # will return a number
set_network <number> ssid "<ssid>" set_network <number> ssid "<ssid>"
set_network <number> psk "<your password>" set_network <number> psk "<your password>"
select_network 0 select_network 0

View file

@ -165,7 +165,7 @@ myManageHook =
composeAll composeAll
[ isNautilusPreviewer --> customFloating centeredFloat [ isNautilusPreviewer --> customFloating centeredFloat
, isPavucontrol --> customFloating centeredFloat , isPavucontrol --> customFloating centeredFloat
, isFeh --> doF copyToAll <> customFloating buttomRightFloat , isFeh --> doF copyToAll <> customFloating bottomRightFloat
, isMinder --> customFloating centeredFloat , isMinder --> customFloating centeredFloat
, isDiscord --> doShift chatWS , isDiscord --> doShift chatWS
, isEvolution --> doShift chatWS , isEvolution --> doShift chatWS
@ -177,7 +177,7 @@ myManageHook =
-- Note: some rules here are overlapping, the first one will take the precedence (composeOne) -- Note: some rules here are overlapping, the first one will take the precedence (composeOne)
-- e.g. firefoxpip is a utility window -- e.g. firefoxpip is a utility window
<> composeOne <> composeOne
[ isFirefoxPip -?> doF copyToAll <> customFloating buttomRightFloat [ isFirefoxPip -?> doF copyToAll <> customFloating bottomRightFloat
, isUtility -?> doIgnore , isUtility -?> doIgnore
, isDialog -?> customFloating centeredFloat , isDialog -?> customFloating centeredFloat
, isEvolutionComposer -?> customFloating centeredFloat , isEvolutionComposer -?> customFloating centeredFloat
@ -399,11 +399,11 @@ chatWS = myWorkspaces !! 3
multimediaWS :: WorkspaceId multimediaWS :: WorkspaceId
multimediaWS = myWorkspaces !! 6 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) centeredFloat = W.RationalRect (1%9) (1%9) (7%9) (7%9)
smallFloat = W.RationalRect (3%5) (3%5) (2%7) (2%7) smallFloat = W.RationalRect (3%5) (3%5) (2%7) (2%7)
fullFloat = W.RationalRect 0 0 1 1 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 :: StatusBarConfig
xmobarConfig = statusBarProp "xmobar -x 0" (pure myPrettyPrinter) xmobarConfig = statusBarProp "xmobar -x 0" (pure myPrettyPrinter)

View file

@ -57,7 +57,7 @@
extraHosts = '' extraHosts = ''
# #
# Generated from nixos configuartion # Generated from nixos configuration
# #
# This is the fascist one, just block it because I can't tell # This is the fascist one, just block it because I can't tell

View file

@ -54,7 +54,7 @@
# Use btrfs over ext4 for: # Use btrfs over ext4 for:
# - compression # - compression
# nix store can be shrinked using this feature # nix store can be shrunk using this feature
# - more transparent partitions (subvolumes) # - more transparent partitions (subvolumes)
# no more "I need more space here and not there" # no more "I need more space here and not there"
btrfs = { btrfs = {

View file

@ -78,7 +78,7 @@ in
# No # No
"browser.urlbar.suggest.quicksuggest.sponsored" = false; "browser.urlbar.suggest.quicksuggest.sponsored" = false;
# Pasword manager # Password manager
"signon.rememberSignons" = false; "signon.rememberSignons" = false;
"services.passwordSavingEnabled" = false; "services.passwordSavingEnabled" = false;
"pref.privacy.disable_button.view_passwords" = false; "pref.privacy.disable_button.view_passwords" = false;

View file

@ -8,7 +8,7 @@
package = lib.mkDefault pkgs.nix; package = lib.mkDefault pkgs.nix;
settings = { 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 # https://github.com/nix-community/nix-direnv/issues/678
accept-flake-config = lib.mkForce false; accept-flake-config = lib.mkForce false;