Compare commits
2 commits
6c0592d39b
...
5dc3fc10ca
Author | SHA1 | Date | |
---|---|---|---|
5dc3fc10ca | |||
ffe908e18e |
3 changed files with 10 additions and 1 deletions
|
@ -33,6 +33,8 @@ in
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
local.games.endless-sky.enable = true;
|
||||||
|
|
||||||
# Extra packages
|
# Extra packages
|
||||||
home.packages = with pkgs.unstable; [
|
home.packages = with pkgs.unstable; [
|
||||||
## game dev
|
## game dev
|
||||||
|
|
|
@ -9,11 +9,13 @@ in
|
||||||
widelands.enable = mkEnableOption "widelands";
|
widelands.enable = mkEnableOption "widelands";
|
||||||
unciv.enable = mkEnableOption "unciv";
|
unciv.enable = mkEnableOption "unciv";
|
||||||
freeciv.enable = mkEnableOption "freeciv";
|
freeciv.enable = mkEnableOption "freeciv";
|
||||||
|
endless-sky.enable = mkEnableOption "endless-sky";
|
||||||
};
|
};
|
||||||
|
|
||||||
config.home.packages =
|
config.home.packages =
|
||||||
lib.optional cfg.mindustry.enable pkgs.unstable.mindustry
|
lib.optional cfg.mindustry.enable pkgs.unstable.mindustry
|
||||||
++ lib.optional cfg.widelands.enable pkgs.widelands
|
++ lib.optional cfg.widelands.enable pkgs.widelands
|
||||||
++ lib.optional cfg.unciv.enable pkgs.unstable.unciv
|
++ lib.optional cfg.unciv.enable pkgs.unstable.unciv
|
||||||
++ lib.optional cfg.freeciv.enable pkgs.unstable.freeciv;
|
++ lib.optional cfg.freeciv.enable pkgs.unstable.freeciv
|
||||||
|
++ lib.optional cfg.endless-sky.enable pkgs.unstable.endless-sky;
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,6 +42,11 @@ in
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
(final: prev: {
|
||||||
|
sniffnet = (import inputs.nixpkgs-unstable {
|
||||||
|
inherit (config.nixpkgs) config system;
|
||||||
|
}).sniffnet;
|
||||||
|
})
|
||||||
(final: prev: {
|
(final: prev: {
|
||||||
unstable = import inputs.nixpkgs-unstable {
|
unstable = import inputs.nixpkgs-unstable {
|
||||||
inherit (config.nixpkgs) config overlays system;
|
inherit (config.nixpkgs) config overlays system;
|
||||||
|
|
Loading…
Reference in a new issue