1
1
Fork 0

Compare commits

..

4 Commits

Author SHA1 Message Date
root b794de0599 Remove obsolete workarounds now that uboot makes 21.11 work 2022-01-09 17:05:47 -08:00
root 14f0a10417 Enable uboot to solve /boot space issues 2022-01-09 16:37:26 -08:00
root aba0a306bc Disable some stuff temporarily 2022-01-08 14:57:28 -08:00
root 255ccddd51 Add user group to inquisitor 2022-01-07 21:24:50 -08:00
3 changed files with 4 additions and 2 deletions

View File

@ -33,8 +33,6 @@
}; };
}; };
security.hideProcessInformation = true;
environment.systemPackages = with pkgs; environment.systemPackages = with pkgs;
[ [
wget vimHugeX curl git htop tmux manpages wget vimHugeX curl git htop tmux manpages

View File

@ -5,6 +5,8 @@
boot.loader.raspberryPi = { boot.loader.raspberryPi = {
enable = true; enable = true;
version = 3; version = 3;
uboot.enable = true;
uboot.configurationLimit = 1;
firmwareConfig = '' firmwareConfig = ''
gpu_mem=192 gpu_mem=192
dtparam=audio=on dtparam=audio=on

View File

@ -21,6 +21,7 @@ let
# Define the inquisitor service user # Define the inquisitor service user
inquisitorUser = { inquisitorUser = {
name = "inquisitor"; name = "inquisitor";
group = "inquisitor";
description = "Inquisitor service user"; description = "Inquisitor service user";
isSystemUser = true; isSystemUser = true;
shell = pkgs.bashInteractive; shell = pkgs.bashInteractive;
@ -77,6 +78,7 @@ let
in in
{ {
users.users.inquisitor = inquisitorUser; users.users.inquisitor = inquisitorUser;
users.groups.inquisitor = {};
# Link the config in /etc to avoid envvar shenanigans # Link the config in /etc to avoid envvar shenanigans
environment.etc."inquisitor.conf".source = "${inquisitorConfig}"; environment.etc."inquisitor.conf".source = "${inquisitorConfig}";