Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
isabelroses committed Dec 1, 2024
1 parent 75f661a commit 3f87a5e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion modules/base/nix/nix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ in
];

# continue building derivations even if one fails
# this is important for keeping a nice cache of derivations, usually because I walk away
# this is important for keeping a nice cache of derivations, usually because I walk away
# from my PC when building and it would be annoying to deal with nothing saved
keep-going = true;

Expand Down
2 changes: 1 addition & 1 deletion modules/base/nix/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# If a package is broken, I don't want it
allowBroken = false;
# But occasionally we need to install some anyway so we can predicated those
# these are usually packages like electron because discord and others love
# these are usually packages like electron because discord and others love
# to take their sweet time updating it
permittedInsecurePackages = [ ];

Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/security/kernel.nix
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ in
# improve performance for certain workloads that use transactional memory
"tsx=on"

# disables the TSX Asynchronous Abort (TAA) mitigation, which is a hardware
# disables the TSX Asynchronous Abort (TAA) mitigation, which is a hardware
# mitigation for TAA (CVE-2019-11135)
"tsx_async_abort=off"

Expand Down
2 changes: 1 addition & 1 deletion systems/wisp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

system = {
mainUser = "comfy";
users = ["comfy"];
users = [ "comfy" ];

boot = {
loader = "none";
Expand Down

0 comments on commit 3f87a5e

Please sign in to comment.