Fix standalone v3ms config, adding stylix

This commit is contained in:
2026-06-03 14:44:21 +02:00
parent f7a84f0531
commit 3945bc3204
2 changed files with 21 additions and 2 deletions
+21 -1
View File
@@ -1,5 +1,15 @@
# Only apply this to home-manager standalone # 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 # Expire old hm generations
hm-expire = { hm-expire = {
enable = true; enable = true;
@@ -14,6 +24,16 @@
persistent = true; 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 # Setup binary caches
nix.settings = { nix.settings = {
substituters = [ substituters = [
-1
View File
@@ -38,6 +38,5 @@ with pkgs; [
devbox # reproducible dev envs based on nix devbox # reproducible dev envs based on nix
mysql80
devenv devenv
] ]