Oops, last commit added an ISO Generator. *This one* adds the nixps
config.
(The `nixps` config is disabled so it doesn't matter as much, but... It still exists.)
This commit is contained in:
parent
973f3b23f6
commit
609093032a
1 changed files with 40 additions and 0 deletions
40
flake.nix
40
flake.nix
|
@ -133,6 +133,46 @@
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
/*
|
||||||
|
nixps = nixpkgs.lib.nixosSystem {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [
|
||||||
|
./system/xps/configuration.nix
|
||||||
|
# ./system/xps/users.nix
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
system.configurationRevision = self.shortRev or self.dirtyShortRev or "dirty";
|
||||||
|
|
||||||
|
home-manager = {
|
||||||
|
useGlobalPkgs = true;
|
||||||
|
useUserPackages = true;
|
||||||
|
|
||||||
|
users = {
|
||||||
|
whovian = {
|
||||||
|
imports = [
|
||||||
|
./home/home.nix
|
||||||
|
agenix.homeManagerModules.default
|
||||||
|
nix-index-database.hmModules.nix-index
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
|
||||||
|
extraSpecialArgs = {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
inherit xil;
|
||||||
|
inherit nixpkgs;
|
||||||
|
pkgs = import nixpkgs {
|
||||||
|
system = "x86_64-linux";
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
inherit agenix;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
*/
|
||||||
isoimage = nixpkgs.lib.nixosSystem {
|
isoimage = nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
modules = [
|
modules = [
|
||||||
|
|
Loading…
Reference in a new issue