File tree Expand file tree Collapse file tree 4 files changed +18
-5
lines changed
Expand file tree Collapse file tree 4 files changed +18
-5
lines changed Original file line number Diff line number Diff line change 1+ # FROM: https://github.com/nvmd/nixos-raspberrypi/pull/99
12name : Build and Push to cachix
23
34on :
@@ -37,12 +38,13 @@ jobs:
3738 - raspberrypiWirelessFirmware
3839 - raspberrypi-utils
3940 - raspberrypi-udev-rules
40- - pisugar-power-manager-rs
41+ # - pisugar-power-manager-rs
4142 - ffmpeg_7-headless
42- - kodi-gbm
43- - rpicam-apps
43+ # - kodi-gbm
44+ # - rpicam-apps
4445 - libcamera
4546 - libpisp
47+ - libraspberrypi
4648
4749 runs-on : ubuntu-24.04-arm
4850
Original file line number Diff line number Diff line change 1010 i18n . defaultLocale = "en_DK.UTF-8" ;
1111 console . keyMap = "dk-latin1" ;
1212
13+ fileSystems . "/boot" =
14+ { device = "/dev/disk/by-uuid/2178-694E" ;
15+ fsType = "vfat" ;
16+ # These options ensure the permissions are correct for a FAT partition
17+ options = [ "fmask=0022" "dmask=0022" ] ;
18+ } ;
19+
1320 users . users . root . initialPassword = "root" ;
1421 networking . hosts . "127.0.0.1" = [ "matrix.mlflexer.online" ] ;
1522 networking = {
Original file line number Diff line number Diff line change @@ -77,6 +77,10 @@ lib.nixosSystem {
7777 kernelPackages = kernelBundle . linuxPackages_rpi5 ;
7878 } ;
7979
80+ boot . loader . grub . configurationLimit = 2 ;
81+ nix . settings . auto-optimise-store = true ;
82+
83+
8084 nixpkgs . overlays = lib . mkAfter [
8185 ( self : super : {
8286 # This is used in (modulesPath + "/hardware/all-firmware.nix") when at least
Original file line number Diff line number Diff line change 8282 script = ''
8383 echo "Key missing, generating key"
8484 echo "lk-jwt-service: $(livekit-server generate-keys | tail -1 | awk '{print $3}')" > "${ keyFile } "
85- chmod 640 "${ keyFile } "
86- chown livekit:lk-jwt-service "${ keyFile } "
85+ # chmod 640 "${ keyFile } "
86+ # chown livekit:lk-jwt-service "${ keyFile } "
8787 '' ;
8888 serviceConfig . Type = "oneshot" ;
8989 unitConfig . ConditionPathExists = "!${ keyFile } " ;
You can’t perform that action at this time.
0 commit comments