Fix standalone v3ms config, adding stylix
This commit is contained in:
@@ -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 = [
|
||||
|
||||
@@ -38,6 +38,5 @@ with pkgs; [
|
||||
|
||||
devbox # reproducible dev envs based on nix
|
||||
|
||||
mysql80
|
||||
devenv
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user