fix: libseat -> seatd rename error

This commit is contained in:
Noa Aarts 2024-10-21 11:09:35 +02:00
parent 2c53912af8
commit 0bfbc32900
Signed by: noa
GPG key ID: 1850932741EFF672
3 changed files with 165 additions and 125 deletions

View file

@ -48,7 +48,22 @@
nvidia.acceptLicense = true;
cudaSupport = true;
};
nixpkgs.overlays = [ ];
nixpkgs.overlays = [
(self: super: {
ccid = super.ccid.overrideAttrs (old: rec {
pname = "ccid";
version = "1.5.5";
src = super.fetchurl {
url = "https://ccid.apdu.fr/files/${pname}-${version}.tar.bz2";
hash = "sha256-GUcI91/jadRd18Feiz6Kfbi0nPxVV1dMoqLnbvEsoMo=";
};
postPatch = ''
patchShebangs .
substituteInPlace src/Makefile.in --replace-fail /bin/echo echo
'';
});
})
];
networking = {
hostName = "lambdaOS"; # Define your hostname.
@ -227,7 +242,9 @@
acceleration = "cuda";
};
desktopManager.cosmic.enable = true;
pcscd.enable = true; # for yubikey
pcscd = {
enable = true; # for yubikey
};
pipewire = {
enable = true;
alsa.enable = true;