diff --git a/profiles/base/default.nix b/profiles/base/default.nix index 98f1fb3..491b00d 100644 --- a/profiles/base/default.nix +++ b/profiles/base/default.nix @@ -13,9 +13,9 @@ nixpkgs = { config = { allowUnfree = true; - allowBroken = true; + allowBroken = false; allowInsecure = false; - allowUnsupportedSystem = true; + allowUnsupportedSystem = false; }; overlays = let diff --git a/profiles/base/home-manager/default.nix b/profiles/base/home-manager/default.nix index adec892..dac6fe2 100644 --- a/profiles/base/home-manager/default.nix +++ b/profiles/base/home-manager/default.nix @@ -2,10 +2,10 @@ imports = [ ./atuin.nix ./bat.nix - ./lazygit.nix ./eza.nix ./fish.nix ./git.nix + ./lazygit.nix ./neovim ./ssh.nix ./starship.nix diff --git a/profiles/base/home-manager/lazygit.nix b/profiles/base/home-manager/lazygit.nix index e1d58ef..b0f5f83 100644 --- a/profiles/base/home-manager/lazygit.nix +++ b/profiles/base/home-manager/lazygit.nix @@ -1,5 +1,6 @@ { programs.lazygit = { + enable = true; settings = { gui = { theme = { diff --git a/profiles/darwin/homebrew.nix b/profiles/darwin/homebrew.nix index e2d3d81..a249163 100644 --- a/profiles/darwin/homebrew.nix +++ b/profiles/darwin/homebrew.nix @@ -1,6 +1,8 @@ {pkgs, ...}: { homebrew = { enable = true; - masApps = {}; + masApps = { + "wipr2" = 1662217862; + }; }; } diff --git a/profiles/darwin/packages.nix b/profiles/darwin/packages.nix index eb3b317..2e6c7b4 100644 --- a/profiles/darwin/packages.nix +++ b/profiles/darwin/packages.nix @@ -2,5 +2,7 @@ with pkgs; [ _1password-gui dockutil + mas raycast + whatsapp-for-mac ]