forked from Yuka/c3h-nixfiles
update bemmer config
This commit is contained in:
parent
c7dce3b8c0
commit
3c80614ee4
1 changed files with 6 additions and 8 deletions
|
@ -16,6 +16,11 @@
|
||||||
../../shared-services/vnc.nix
|
../../shared-services/vnc.nix
|
||||||
../../shared-services/webserver.nix
|
../../shared-services/webserver.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledModules = [
|
||||||
|
"profiles/base.nix"
|
||||||
|
];
|
||||||
|
|
||||||
users.users.c3h = {
|
users.users.c3h = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
password = "c3h";
|
password = "c3h";
|
||||||
|
@ -25,19 +30,12 @@
|
||||||
|
|
||||||
networking.hostName = "bemmer";
|
networking.hostName = "bemmer";
|
||||||
networking.domain = "c3h";
|
networking.domain = "c3h";
|
||||||
|
|
||||||
networking.useDHCP = true;
|
networking.useDHCP = true;
|
||||||
|
|
||||||
nixpkgs.system = "aarch64-linux";
|
nixpkgs.system = "aarch64-linux";
|
||||||
boot.initrd.availableKernelModules = lib.mkForce [ "vc4" "i2c_bcm2835" ];
|
boot.initrd.availableKernelModules = lib.mkForce [ "vc4" "i2c_bcm2835" ];
|
||||||
boot.supportedFilesystems = lib.mkForce [ "ext4" "vfat" ];
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
boot.kernelPackages = pkgs.linuxPackages_rpi4;
|
||||||
documentation.enable = false;
|
hardware.raspberry-pi."4".fkms-3d.enable = true;
|
||||||
|
|
||||||
hardware.raspberry-pi."4" = {
|
|
||||||
fkms-3d.enable = true;
|
|
||||||
#audio.enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
system.stateVersion = "21.05";
|
system.stateVersion = "21.05";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue