This commit is contained in:
iFargle 2023-09-19 09:54:18 +09:00
parent 5c0aac7d02
commit 6c9f38218a

View file

@ -35,11 +35,11 @@
# Combines mkHost and mkHome for image building
mkImage = {
hostname,
hostname ,
username ? "albert",
desktop ? null,
platform ? "x86_64-linux",
installer ? null,
installer ,
gpu ? null,
theme ? "default"
}: inputs.nixpkgs.lib.nixosSystem {
@ -55,9 +55,9 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
users.users."$username" = import ../home-manager;
imports = [
inputs.doom-emacs.hmModule
];
# imports = [
# inputs.doom-emacs.hmModule
# ];
}
];
};