I think this will build an SD image with an installer?
Some checks failed
/ check (push) Failing after 57s
Some checks failed
/ check (push) Failing after 57s
This commit is contained in:
parent
2c541801e6
commit
a1acf60896
2 changed files with 12 additions and 2 deletions
10
flake.nix
10
flake.nix
|
@ -692,6 +692,16 @@
|
||||||
# TODO: quirk: since git send-email requires perl support, which we don't seem to have on the pinephone, we're just disabling git for now
|
# TODO: quirk: since git send-email requires perl support, which we don't seem to have on the pinephone, we're just disabling git for now
|
||||||
# TODO: would likely be easier/better to somehow ignore the assertion? probably a way to do that...
|
# TODO: would likely be easier/better to somehow ignore the assertion? probably a way to do that...
|
||||||
programs.git.enable = lib.mkForce false;
|
programs.git.enable = lib.mkForce false;
|
||||||
|
|
||||||
|
# this option is conflicted, presumably due to some assumption in my defaults/common config
|
||||||
|
# the sd-image module we're importing above has this set to true, so we better go with that?
|
||||||
|
# that said, I think the mobile-nixos bootloader module has this set to false, so...
|
||||||
|
# TODO: what does this mean?
|
||||||
|
boot.loader.generic-extlinux-compatible.enable = lib.mkForce true;
|
||||||
|
|
||||||
|
# another conflicting option since I think I default to NetworkManager and this conflicts with networking.wireless.enable
|
||||||
|
networking.networkmanager.enable = lib.mkForce false;
|
||||||
|
networking.wireless.enable = lib.mkForce true;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
|
@ -308,7 +308,7 @@
|
||||||
settings = {
|
settings = {
|
||||||
PasswordAuthentication = false;
|
PasswordAuthentication = false;
|
||||||
KbdInteractiveAuthentication = false;
|
KbdInteractiveAuthentication = false;
|
||||||
PermitRootLogin = "prohibit-password";
|
PermitRootLogin = lib.mkForce "prohibit-password";
|
||||||
};
|
};
|
||||||
|
|
||||||
openFirewall = lib.mkDefault true;
|
openFirewall = lib.mkDefault true;
|
||||||
|
@ -362,7 +362,7 @@
|
||||||
modifications
|
modifications
|
||||||
unstable-packages
|
unstable-packages
|
||||||
];
|
];
|
||||||
config.allowUnfree = true;
|
# config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|
Loading…
Reference in a new issue