diff --git a/nix/local_system.nix b/nix/local_system.nix index cab669e..5be8266 100644 --- a/nix/local_system.nix +++ b/nix/local_system.nix @@ -1,14 +1,12 @@ { - pkgs, - config, - self, - nix-homebrew, ... }: { system = { + # Just a stub value, change this to whatever your system requiers. stateVersion = 5; }; - nix-homebrew.user = "larssonmartin1998-mac"; + # Just a stub value, change this to whatever your system requiers. + nix-homebrew.user = "JohnDoe"; } diff --git a/nix/pkgs/darwin.nix b/nix/pkgs/darwin.nix index 623d679..89babf7 100644 --- a/nix/pkgs/darwin.nix +++ b/nix/pkgs/darwin.nix @@ -1,4 +1,4 @@ -{ pkgs, homebrew, ... }: +{ pkgs, ... }: { home = { packages = with pkgs; [ diff --git a/nix/pkgs/linux.nix b/nix/pkgs/linux.nix index 4719e13..078556e 100644 --- a/nix/pkgs/linux.nix +++ b/nix/pkgs/linux.nix @@ -1,7 +1,8 @@ -{ pkgs, ... }: { - home = { - file = { - ".config/sway".source = ../sway; - }; +{ pkgs, ... }: +{ + home = { + file = { + ".config/sway".source = ../sway; }; + }; } diff --git a/nix/pkgs/wsl.nix b/nix/pkgs/wsl.nix index 4b2c5c4..52c14b8 100644 --- a/nix/pkgs/wsl.nix +++ b/nix/pkgs/wsl.nix @@ -1,2 +1,3 @@ -{ ... }: { +{ ... }: +{ } diff --git a/nix/system/linux.nix b/nix/system/linux.nix index 4b2c5c4..52c14b8 100644 --- a/nix/system/linux.nix +++ b/nix/system/linux.nix @@ -1,2 +1,3 @@ -{ ... }: { +{ ... }: +{ } diff --git a/nix/system/wsl.nix b/nix/system/wsl.nix index db28fae..4df1c79 100644 --- a/nix/system/wsl.nix +++ b/nix/system/wsl.nix @@ -1,7 +1,8 @@ -{ nixos-wsl, ... }: { - imports = [ - nixosWSL.nixosModules.default - ]; +{ nixos-wsl, ... }: +{ + imports = [ + nixos-wsl.nixosModules.default + ]; - wsl.enable = true; + wsl.enable = true; }