Dwarf fortress

This commit is contained in:
Charlotte Van Petegem 2020-10-26 09:21:36 +01:00
parent 4272da36cb
commit 51bf45604e
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 20 additions and 0 deletions

View file

@ -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 ];
};
}