Compare commits

..

No commits in common. "5dc3fc10ca62b696c56f139cf9fc1a5ac0181787" and "6c0592d39bb5c2c3866cd9857b0621c1240225cc" have entirely different histories.

3 changed files with 1 additions and 10 deletions

View file

@ -33,8 +33,6 @@ 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

View file

@ -9,13 +9,11 @@ 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;
} }

View file

@ -42,11 +42,6 @@ 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;