resolve all warnings

This commit is contained in:
2025-09-25 14:22:26 +08:00
parent 3f88573b66
commit 43dee44546
5 changed files with 8 additions and 10 deletions

7
flake.lock generated
View File

@@ -9,16 +9,15 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1758386048,
"narHash": "sha256-xgzC5C+ZXTxGLJFe4sAx2bUjQNNHcDUO0ES3eDy0qHk=",
"lastModified": 1758557465,
"narHash": "sha256-SeDqOZQoARl/xxEMdej09IScCf77SEQfRAjED7lBgMY=",
"owner": "ezKEa",
"repo": "aagl-gtk-on-nix",
"rev": "8387778adde8625dcb8f2d4da87e7dcf16f53b4f",
"rev": "944f9903859ad16db762fbe573fb6f05f7367e16",
"type": "github"
},
"original": {
"owner": "ezKEa",
"ref": "release-25.05",
"repo": "aagl-gtk-on-nix",
"type": "github"
}

View File

@@ -27,7 +27,7 @@
};
catppuccin = { url = "github:catppuccin/nix"; inputs.nixpkgs.follows = "nixpkgs"; };
bscpkgs = { url = "github:CHN-beta/bscpkgs"; inputs.nixpkgs.follows = "nixpkgs"; };
aagl = { url = "github:ezKEa/aagl-gtk-on-nix/release-25.05"; inputs.nixpkgs.follows = "nixpkgs"; };
aagl = { url = "github:ezKEa/aagl-gtk-on-nix"; inputs.nixpkgs.follows = "nixpkgs"; };
winapps = { url = "github:winapps-org/winapps/feat-nix-packaging"; inputs.nixpkgs.follows = "nixpkgs"; };
nixvirt = { url = "github:CHN-beta/NixVirt"; inputs.nixpkgs.follows = "nixpkgs"; };
buildproxy = { url = "github:polygon/nix-buildproxy"; inputs.nixpkgs.follows = "nixpkgs"; };

View File

@@ -42,7 +42,7 @@ inputs:
# editor
typora standardnotes
# news
fluent-reader rssguard newsflash newsboat follow
fluent-reader rssguard newsflash newsboat folo
# nix tools
nixpkgs-fmt appimage-run nixd nix-serve node2nix nix-prefetch-github prefetch-npm-deps nix-prefetch-docker
nix-template nil bundix

View File

@@ -37,9 +37,7 @@ inputs:
config.programs.ssh =
{
enable = true;
controlMaster = "auto";
controlPersist = "1m";
compression = true;
enableDefaultConfig = false;
matchBlocks = builtins.listToAttrs (builtins.map
(host:
{
@@ -64,6 +62,7 @@ inputs:
extraOptions.AddKeysToAgent = "yes";
};
"wg0.jykang" = jykang // { host = "wg0.jykang"; proxyJump = "wg0.srv2"; };
"*" = { controlMaster = "auto"; controlPersist = "1m"; compression = true; };
};
};
})];

View File

@@ -19,7 +19,7 @@ inputs:
let sessionData = "${inputs.config.services.displayManager.sessionData.desktops}/share";
in builtins.concatStringsSep " "
[
"${inputs.pkgs.greetd.tuigreet}/bin/tuigreet"
"${inputs.pkgs.tuigreet}/bin/tuigreet"
"--sessions ${sessionData}/wayland-sessions --xsessions ${sessionData}/xsessions"
"--time --asterisks --remember --remember-user-session"
(inputs.lib.optionalString (gui.implementation == "kde") "--cmd startplasma-wayland")