Live: Tweak a bit.
This commit is contained in:
parent
b8ae93752f
commit
ddd9342a30
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1 +1 @@
|
|||
/live
|
||||
/iso
|
||||
|
|
10
Makefile
10
Makefile
|
@ -52,15 +52,12 @@ install-hm:
|
|||
nix-channel --update
|
||||
nix-shell '<home-manager>' -A install
|
||||
|
||||
.PHONY: installer
|
||||
installer:
|
||||
nix build -o installer $(options) $(flake)#nixosConfigurations.installer.config.system.build.isoImage
|
||||
nix build -o iso/installer $(options) $(flake)#nixosConfigurations.installer.config.system.build.isoImage
|
||||
|
||||
.PHONY: isolation
|
||||
isolation:
|
||||
nix build -o isolation $(options) $(flake)#nixosConfigurations.isolation.config.system.build.isoImage
|
||||
nix build -o iso/isolation $(options) $(flake)#nixosConfigurations.isolation.config.system.build.isoImage
|
||||
|
||||
.PHONY: live
|
||||
live:
|
||||
nix build -o iso/live $(options) $(flake)#nixosConfigurations.live.config.system.build.isoImage
|
||||
|
||||
|
@ -70,9 +67,8 @@ no-nixconf:
|
|||
reboot: boot
|
||||
reboot
|
||||
|
||||
.PHONY: recovery
|
||||
recovery:
|
||||
nix build -o recovery $(options) $(flake)#nixosConfigurations.recovery.config.system.build.isoImage
|
||||
nix build -o iso/recovery $(options) $(flake)#nixosConfigurations.recovery.config.system.build.isoImage
|
||||
|
||||
show:
|
||||
nix flake show
|
||||
|
|
|
@ -4,7 +4,7 @@ let
|
|||
in
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
services.rogue.enable = true;
|
||||
# services.rogue.enable = true; # NOTE: Not available smh.
|
||||
services.mingetty = {
|
||||
autologinUser = "live";
|
||||
helpLine = ''
|
||||
|
|
|
@ -3,7 +3,7 @@ let
|
|||
dpiAware = if config.module.display.dpiAware then "yes" else "no";
|
||||
in
|
||||
{
|
||||
file = (pkgs.formats.ini { }).generate "FuzzelConfig" {
|
||||
file = (pkgs.formats.ini { }).generate "fuzzel-config" {
|
||||
main = {
|
||||
dpi-aware = dpiAware;
|
||||
font = "Minecraftia:size=${toString config.module.style.font.size.popup}";
|
||||
|
|
|
@ -4,11 +4,8 @@
|
|||
|
||||
module = {
|
||||
purpose = {
|
||||
live = true;
|
||||
};
|
||||
package = {
|
||||
common = true;
|
||||
desktop = true;
|
||||
live = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
inputs,
|
||||
pkgs,
|
||||
pkgsMaster,
|
||||
pkgsUnstable,
|
||||
|
|
Loading…
Reference in a new issue