Files
dotfiles/nixos/tsuba/tsuba.nix
uttarayan21 83eac887cb
Some checks failed
Flake checker / Build Nix targets (push) Failing after 16s
fix(nixos): set /home as neededForBoot in mirai and tsuba modules
2025-10-13 10:19:56 +05:30

36 lines
747 B
Nix

{
config,
pkgs,
device,
lib,
...
}: {
networking.hostName = device.name;
networking.firewall.logRefusedConnections = lib.mkDefault false;
networking.useNetworkd = true;
systemd.services.NetworkManager-wait-online.enable = false;
systemd.network.wait-online.enable = false;
fileSystems."/home".neededForBoot = true;
system.nixos.tags = let
cfg = config.boot.loader.raspberryPi;
in [
"raspberry-pi-${cfg.variant}"
cfg.bootloader
config.boot.kernelPackages.kernel.version
];
# hardware.raspberry-pi.config = {
# all = {
# "dtparam" = [
# "pciex1"
# "pciex1_gen=2"
# ];
# };
# };
hardware.raspberry-pi.extra-config = ''
[all]
dtparam=pciex1_gen=2
'';
}