Add QMK Cheat config

This commit is contained in:
muon 2025-08-16 18:47:43 +00:00
parent 72ef424ba1
commit 00433dd778
6 changed files with 139 additions and 89 deletions

View file

@ -1,15 +1,23 @@
{ pkgs, lib, config, inputs, system, ... }: {
{
pkgs,
lib,
config,
inputs,
system,
...
}: {
options = {
mods.nix.upgrade.enable = lib.mkEnableOption "enables nix auto upgrade";
mods.nix.clean.enable = lib.mkEnableOption "enables nix auto cleaning";
};
config = let flake = "/home/${config.mods.user.name}/.config/home";
config = let
flake = "/home/${config.mods.user.name}/.config/home";
in {
system.autoUpgrade = {
enable = config.mods.nix.upgrade.enable;
flake = flake;
flags = [ "--commit-lock-file" "-L" ];
flags = ["--commit-lock-file" "-L"];
dates = "02:00";
randomizedDelaySec = "45min";
};
@ -21,19 +29,21 @@
flake = flake;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = ["nix-command" "flakes"];
nix.settings = {
substituters = [
"https://cache.nixos.org"
"https://nix-community.cachix.org"
"https://nixpkgs-unfree.cachix.org"
"https://hyprland.cachix.org"
"https://devenv.cachix.org"
];
trusted-public-keys = [
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
"nixpkgs-unfree.cachix.org-1:hqvoInulhbV4nJ9yJOEr+4wxhDV4xq2d1DK7S6Nj6rs="
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
"devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="
];
};