diff --git a/configurations/dwarf-fortress.nix b/configurations/dwarf-fortress.nix new file mode 100644 index 00000000..4486c964 --- /dev/null +++ b/configurations/dwarf-fortress.nix @@ -0,0 +1,19 @@ +{ ... }: + +{ + custom.zfs.homeLinks = [ + { type = "data"; path = ".local/share/df_linux"; } + ]; + + nixpkgs.overlays = [ + (self: super: { + dwarf-fortress = super.dwarf-fortress.override { + enableSound = false; + }; + }) + ]; + + home-manager.users.charlotte = { pkgs, ... }: { + home.packages = with pkgs; [ dwarf-fortress ]; + }; +} diff --git a/profiles/graphical.nix b/profiles/graphical.nix index 9e754feb..542e12a1 100644 --- a/profiles/graphical.nix +++ b/profiles/graphical.nix @@ -8,6 +8,7 @@ ../configurations/deluge.nix ../configurations/docker.nix ../configurations/dropbox.nix + ../configurations/dwarf-fortress.nix ../configurations/firefox.nix ../configurations/fonts.nix ../configurations/i3.nix