fix: libseat -> seatd rename error
This commit is contained in:
parent
2c53912af8
commit
0bfbc32900
3 changed files with 165 additions and 125 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue