mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
fix: issues that make it so flake check won't complete
This commit is contained in:
parent
451188b599
commit
57245a24e6
2 changed files with 15 additions and 3 deletions
|
|
@ -5,5 +5,11 @@
|
||||||
./../../modules/core
|
./../../modules/core
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
"jitsi-meet-1.0.8043"
|
||||||
|
"olm-3.2.16"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
powerManagement.cpuFreqGovernor = "performance";
|
powerManagement.cpuFreqGovernor = "performance";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,12 @@
|
||||||
./../../modules/core
|
./../../modules/core
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nixpkgs.config.permittedInsecurePackages = [
|
||||||
|
"jitsi-meet-1.0.8043"
|
||||||
|
"olm-3.2.16"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
# kvm/qemu doesn't use UEFI firmware mode by default.
|
# kvm/qemu doesn't use UEFI firmware mode by default.
|
||||||
# so we force-override the setting here
|
# so we force-override the setting here
|
||||||
# and configure GRUB instead.
|
# and configure GRUB instead.
|
||||||
|
|
@ -22,9 +28,9 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
ports = [22];
|
ports = [22];
|
||||||
settings = {
|
settings = {
|
||||||
PasswordAuthentication = true;
|
# PasswordAuthentication = lib.mkOverride true;
|
||||||
AllowUsers = null;
|
AllowUsers = null;
|
||||||
PermitRootLogin = "yes";
|
# PermitRootLogin = "yes";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue