From b4818d741c4e64ccc51b2121cbd61f450414091d Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Thu, 14 Sep 2023 17:12:39 -0500 Subject: [PATCH] Formatting --- nixos.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/nixos.nix b/nixos.nix index a3d552c..ee968c8 100644 --- a/nixos.nix +++ b/nixos.nix @@ -2,11 +2,12 @@ inputs @ { self, ... }: let daniel = system: { home-manager.users.daniel = { - nixpkgs.overlays = [ (final: prev: { - helix = prev.helix // inputs.helix.packages.${system}.helix; - rtx = prev.rtx // inputs.rtx.packages.${system}.rtx; - }) - ]; + nixpkgs.overlays = [ + (final: prev: { + helix = prev.helix // inputs.helix.packages.${system}.helix; + rtx = prev.rtx // inputs.rtx.packages.${system}.rtx; + }) + ]; imports = [ ./home/user.nix ./home/linux.nix ]; }; }; @@ -37,7 +38,7 @@ in ]; rascal = nixosSystem [ ./nixos/rascal.nix ]; - + musicbox = diskoNixosSystem "x86_64-linux" self.diskoConfigurations.unencrypted [ "/dev/sda" ] [ ./nixos/musicbox.nix ]; thinker = diskoNixosSystem "x86_64-linux" self.diskoConfigurations.standard [ "/dev/nvme0n1" ] [ ./nixos/thinker.nix ]; # dragon = diskoNixosSystem self.diskoConfigurations.standard [ "/dev/disk/by-uuid/asdf" ] [ ./nixos/dragon.nix ];