- Zaktualizowano wpisy w pliku `flake.lock` dla kilku źródeł (np. `home-manager`, `nixpkgs`, `stylix`), aby pobrać najnowsze wersje. - Tymczasowo zakomentowano konfigurację montowania CIFS w `hardware.nix`. - Dodano `anki-bin` do listy klientów w `clients.nix`. - Wprowadzono nowy alias `pasjans` uruchamiający `ttysolitaire` w `programs.nix`.
38 lines
752 B
Nix
38 lines
752 B
Nix
{pkgs, ...}: {
|
|
hardware = {
|
|
sane = {
|
|
enable = true;
|
|
extraBackends = [pkgs.sane-airscan];
|
|
disabledDefaultBackends = ["escl"];
|
|
};
|
|
logitech = {
|
|
wireless = {
|
|
enable = false;
|
|
enableGraphical = false;
|
|
};
|
|
};
|
|
bluetooth = {
|
|
enable = true;
|
|
powerOnBoot = true;
|
|
};
|
|
graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
};
|
|
|
|
# fileSystems."/mnt/Garand-Library" = {
|
|
# device = "//192.168.1.156/Garand-Library";
|
|
# fsType = "cifs";
|
|
# options = [
|
|
# "credentials=/etc/smb-credentials"
|
|
# "uid=1000"
|
|
# "gid=100"
|
|
# "iocharset=utf8"
|
|
# "x-systemd.automount"
|
|
# "x-systemd.idle-timeout=60"
|
|
# "noauto"
|
|
# ];
|
|
# };
|
|
}
|