chore: add icons flake to nixstation

This commit is contained in:
Thiago Sposito 2025-10-08 18:16:04 -03:00
parent 958c0d95d5
commit 3d5554a8bf
Signed by: thiago
GPG key ID: 3065EA73A976D430
2 changed files with 12 additions and 1 deletions

View file

@ -65,6 +65,7 @@
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { extraSpecialArgs = {
inherit inputs outputs; inherit inputs outputs;
icons = inputs.icons;
}; };
modules = [ modules = [

View file

@ -9,6 +9,17 @@
imports = [ ./users/thiago/default.nix ]; imports = [ ./users/thiago/default.nix ];
boot.loader.systemd-boot.enable = true; boot.loader.systemd-boot.enable = true;
nixpkgs.overlays = [
(final: prev: {
libnitrokey = prev.libnitrokey.overrideAttrs (old: {
cmakeFlags = (old.cmakeFlags or [ ]) ++ [
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
];
});
})
];
environment = { environment = {
shells = with pkgs; [ zsh ]; shells = with pkgs; [ zsh ];
etc = lib.mapAttrs' (name: value: { etc = lib.mapAttrs' (name: value: {
@ -82,7 +93,6 @@
pkgs.libwacom pkgs.libwacom
pkgs.nitrokey-udev-rules pkgs.nitrokey-udev-rules
]; ];
}; };
users.groups.scard = { }; users.groups.scard = { };