chore: bump nixpkgs, niri, home-manager

This commit is contained in:
2025-11-03 18:36:27 -07:00
parent 6558573f48
commit 76b08f08a4
4 changed files with 30 additions and 45 deletions

View File

@@ -1,17 +0,0 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.programs.glab;
in {
options = {
programs.glab = {
enable = mkEnableOption "the GitLab CLI tool";
};
};
config = mkIf cfg.enable {
# TODO: Everything else. }:)
home.packages = [ pkgs.glab ];
};
}

View File

@@ -26,7 +26,7 @@ in {
syncMedia = true;
url = "https://anki.deertopia.net/";
usernameFile = config.sops.secrets.anki-username.path;
passwordFile = config.sops.secrets.anki-sync-key.path;
keyFile = config.sops.secrets.anki-sync-key.path;
};
};
};

View File

@@ -19,9 +19,11 @@ in {
### Git
programs.git = {
enable = true;
userEmail = my-email;
userName = my-name;
extraConfig = {
settings = {
user = {
name = my-name;
email = my-email;
};
diff = {
tool = "ediff";
guitool = "ediff";