nixos/profiles/installer: add Guix

Now, it's dual purpose as a NixOS AND Guix System installer.
This commit is contained in:
Gabriel Arazas 2024-07-31 21:49:00 +08:00
parent f6c70a278b
commit 4c7813a417
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360

View File

@ -1,7 +1,7 @@
# A dedicated profile for installers with some niceties in it. This is also # A dedicated profile for installers with some niceties in it. This is also
# used for persistent live installers so you'll have to exclude setting up shop # used for persistent live installers so you'll have to exclude setting up shop
# and do that in the respective NixOS configuration instead. # and do that in the respective NixOS configuration instead.
{ pkgs, modulesPath, ... }: { pkgs, lib, modulesPath, ... }:
{ {
imports = [ imports = [
@ -19,4 +19,8 @@
neovim neovim
zellij zellij
]; ];
# Yeah, that's right, this is also a Guix System installer because SCREW YOU,
# NIXOS USERS!
services.guix.enable = lib.mkDefault true;
} }