diff --git a/hosts/macbook/settings.nix b/hosts/macbook/settings.nix index 8e5bb90..30c23b6 100644 --- a/hosts/macbook/settings.nix +++ b/hosts/macbook/settings.nix @@ -5,6 +5,15 @@ nixpkgs.hostPlatform = "aarch64-darwin"; system.stateVersion = 6; + programs.chromium = { + enable = true; + homepageLocation = "https://dashboard.mektem.com"; + extraOpts = { + "SpellcheckEnabled" = true; + "BrowserThemeColor" = "#fffcf0"; + }; + }; + environment.systemPackages = with pkgs; [ audacity brave @@ -61,6 +70,7 @@ system.stateVersion = 6; "veracrypt-fuse-t" "fuse-t" "nextcloud" + "tailscale" ]; }; @@ -125,17 +135,4 @@ system.stateVersion = 6; ''; }; - services.spacebar = { - enable = true; - package = pkgs.spacebar; - config = { - height = "38"; - clock_format = "\'%a %b %-d %H:%M\'"; - #text_font = ''"Menlo:Regular:14.0"''; - icon_font = ''"Font Awesome 5 Free:Solid:12.0"''; - power_icon_strip = " "; - title = "off"; # notch.... - }; - }; - }