Things sisko
related
This commit is contained in:
parent
7813e72971
commit
387099fdc5
2 changed files with 25 additions and 3 deletions
|
@ -126,7 +126,7 @@
|
||||||
};
|
};
|
||||||
extraModules = with inputs; [
|
extraModules = with inputs; [
|
||||||
disko.nixosModules.disko
|
disko.nixosModules.disko
|
||||||
rock5b.nixosModules.default
|
# rock5b.nixosModules.default
|
||||||
];
|
];
|
||||||
secrets = {
|
secrets = {
|
||||||
"sisko-wireguard-private-key" = {};
|
"sisko-wireguard-private-key" = {};
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
{
|
{
|
||||||
fleetModules,
|
fleetModules,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
lib,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports =
|
imports =
|
||||||
|
@ -20,19 +21,40 @@
|
||||||
"adguard-home"
|
"adguard-home"
|
||||||
"cloudflare-dyndns"
|
"cloudflare-dyndns"
|
||||||
"rock5b-proxy"
|
"rock5b-proxy"
|
||||||
"invidious"
|
# "invidious"
|
||||||
"searx"
|
"searx"
|
||||||
"rock5b-samba"
|
"rock5b-samba"
|
||||||
"paperless"
|
"paperless"
|
||||||
"restic"
|
"restic"
|
||||||
|
"syncthing"
|
||||||
]
|
]
|
||||||
++ [
|
++ [
|
||||||
./disko.nix
|
./disko.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# FIXME why is this needed?
|
||||||
|
nixpkgs.config.permittedInsecurePackages = ["openssl-1.1.1w"];
|
||||||
|
|
||||||
|
# boot.kernelPackages = pkgs.linuxPackagesFor pkgs.linux_testing;
|
||||||
|
# TODO change to collabora fork, it should work
|
||||||
|
boot.kernelPackages = pkgs.linuxPackagesFor (pkgs.linux_testing.override {
|
||||||
|
argsOverride = {
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "K900";
|
||||||
|
repo = "linux";
|
||||||
|
rev = "708bb9891e6454a26fc6f2a62148ec95562121bb";
|
||||||
|
sha256 = "sha256-cyspY5BzKRVne28oYWU8VxzkIgokycmgI9/pYGRBSv0=";
|
||||||
|
};
|
||||||
|
version = "6.7-rc8";
|
||||||
|
modDirVersion = "6.7.0-rc8";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
powerManagement.cpuFreqGovernor = "schedutil";
|
||||||
|
|
||||||
ccr.enable = true;
|
ccr.enable = true;
|
||||||
|
|
||||||
services.rock5b-fan-control.enable = true;
|
# services.rock5b-fan-control.enable = true;
|
||||||
|
|
||||||
nixpkgs.hostPlatform = "aarch64-linux";
|
nixpkgs.hostPlatform = "aarch64-linux";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue