From 3945bc320455b299ff252f03f2ff2248dc4f0944 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Wed, 3 Jun 2026 14:44:21 +0200 Subject: [PATCH] Fix standalone v3ms config, adding stylix --- homes/julian/hm-standalone-config.nix | 22 +++++++++++++++++++++- homes/julian/v3ms/packages.nix | 1 - 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/homes/julian/hm-standalone-config.nix b/homes/julian/hm-standalone-config.nix index f828f0f..716ce1c 100644 --- a/homes/julian/hm-standalone-config.nix +++ b/homes/julian/hm-standalone-config.nix @@ -1,5 +1,15 @@ # Only apply this to home-manager standalone -{outputs, ...}: { +{ + inputs, + outputs, + pkgs, + ... +}: { + imports = [inputs.stylix.homeModules.stylix]; + + stylix.enable = true; + stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-mocha.yaml"; + # Expire old hm generations hm-expire = { enable = true; @@ -14,6 +24,16 @@ persistent = true; }; + nixpkgs = { + # Apply overlays + overlays = builtins.attrValues outputs.overlays; + config = { + allowUnfree = true; + allowUnfreePredicate = _: true; # TODO: what is this + warn-dirty = false; + }; + }; + # Setup binary caches nix.settings = { substituters = [ diff --git a/homes/julian/v3ms/packages.nix b/homes/julian/v3ms/packages.nix index 7217770..2ed5b4b 100644 --- a/homes/julian/v3ms/packages.nix +++ b/homes/julian/v3ms/packages.nix @@ -38,6 +38,5 @@ with pkgs; [ devbox # reproducible dev envs based on nix - mysql80 devenv ]