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