Test
This commit is contained in:
parent
99a388b850
commit
6e5ef7ddf5
2 changed files with 3 additions and 4 deletions
|
@ -73,7 +73,7 @@
|
||||||
type ? "default",
|
type ? "default",
|
||||||
repo ? "nixpkgs",
|
repo ? "nixpkgs",
|
||||||
unfree ? false
|
unfree ? false
|
||||||
}:inputs.${repo}.lib.nixosSystem {
|
}: inputs.${repo}.lib.nixosSystem {
|
||||||
specialArgs = { inherit inputs outputs desktop hostname username hmStateVersion stateVersion gpu system theme self;
|
specialArgs = { inherit inputs outputs desktop hostname username hmStateVersion stateVersion gpu system theme self;
|
||||||
# Choose whether to pull from stable or unstable
|
# Choose whether to pull from stable or unstable
|
||||||
pkgs = import inputs.${repo} {
|
pkgs = import inputs.${repo} {
|
||||||
|
@ -132,8 +132,7 @@
|
||||||
gpu ? null,
|
gpu ? null,
|
||||||
theme ? "stylix",
|
theme ? "stylix",
|
||||||
format
|
format
|
||||||
}:
|
}: inputs.nixos-generators.nixosGenerate {
|
||||||
inputs.nixos-generators.nixosGenerate {
|
|
||||||
specialArgs = { inherit inputs outputs desktop hostname username stateVersion hmStateVersion gpu system theme format; };
|
specialArgs = { inherit inputs outputs desktop hostname username stateVersion hmStateVersion gpu system theme format; };
|
||||||
system = system;
|
system = system;
|
||||||
format = format;
|
format = format;
|
||||||
|
|
|
@ -3,6 +3,6 @@ let
|
||||||
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion; };
|
libx = import ../../../lib {inherit self inputs outputs stateVersion hmStateVersion; };
|
||||||
in {
|
in {
|
||||||
containers = {
|
containers = {
|
||||||
rdesktop = libx.mkContainer { container = "rdesktop"; };
|
rdesktop = libx.mkContainer { container = "rdesktop"; desktop = "xfce";};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue