treewide: replace enableGUI with config.me.gui

This commit is contained in:
LavaDesu 2025-03-23 12:57:20 +11:00
parent 3ccf85aa9e
commit 571f0f6f3e
Signed by: cilly
GPG key ID: 6500251E087653C9
6 changed files with 15 additions and 15 deletions

View file

@ -51,7 +51,7 @@
mkSystem =
if !(self ? rev) then throw "Dirty git tree detected." else
nixpkgs: name: arch: enableGUI: extraModules: nixpkgs.lib.nixosSystem {
nixpkgs: name: arch: extraModules: nixpkgs.lib.nixosSystem {
system = arch;
modules = [
({
@ -62,14 +62,14 @@
(./hosts + "/${name}")
] ++ extraModules;
specialArgs = {
inherit inputs enableGUI;
inherit inputs;
modules = import ./modules { lib = nixpkgs.lib; };
};
};
in
{
nixosConfigurations."anemone" = mkSystem nixpkgs "anemone" "x86_64-linux" true [];
nixosConfigurations."hyacinth" = mkSystem nixpkgs "hyacinth" "x86_64-linux" true [];
nixosConfigurations."anemone" = mkSystem nixpkgs "anemone" "x86_64-linux" [];
nixosConfigurations."hyacinth" = mkSystem nixpkgs "hyacinth" "x86_64-linux" [];
packages."x86_64-linux" =
let