diff options
author | Emile <git@emile.space> | 2024-09-19 10:48:16 +0200 |
---|---|---|
committer | Emile <git@emile.space> | 2024-09-19 10:48:16 +0200 |
commit | e833c13c177288b2a7b9168a784e0e6562c025b6 (patch) | |
tree | 1661dad1694989e2d83e6c2fca7b5602a61c574b /nix/hosts/pi1 | |
parent | dcde3882d5460368e3c0499a54330f84a6995d62 (diff) |
big format using nixfmt
Diffstat (limited to 'nix/hosts/pi1')
-rw-r--r-- | nix/hosts/pi1/default.nix | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/nix/hosts/pi1/default.nix b/nix/hosts/pi1/default.nix index c79cfc7..3469ff8 100644 --- a/nix/hosts/pi1/default.nix +++ b/nix/hosts/pi1/default.nix @@ -12,9 +12,7 @@ { lib, ... }: { - imports = [ - <nixpkgs/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix> - ]; + imports = [ <nixpkgs/nixos/modules/installer/sd-card/sd-image-raspberrypi.nix> ]; users.users = { emile = { @@ -26,15 +24,15 @@ nixpkgs = { crossSystem = lib.systems.examples.raspberryPi; - localSystem = { system = "x86_64-linux"; }; + localSystem = { + system = "x86_64-linux"; + }; overlays = [ (final: super: { # Due to https://github.com/NixOS/nixpkgs/issues/154163#issuecomment-1350599022 - makeModulesClosure = x: - super.makeModulesClosure (x // { allowMissing = true; }); + makeModulesClosure = x: super.makeModulesClosure (x // { allowMissing = true; }); }) ]; }; system.stateVersion = "24.05"; } - |