chore: add icons flake to nixstation
This commit is contained in:
parent
958c0d95d5
commit
3d5554a8bf
2 changed files with 12 additions and 1 deletions
|
|
@ -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 = [
|
||||||
|
|
|
||||||
|
|
@ -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 = { };
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue