Remove some unused configurations

This commit is contained in:
Charlotte Van Petegem 2021-01-06 16:08:10 +01:00
parent ecc301166e
commit dbe32eef7f
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 0 additions and 41 deletions

View file

@ -1,19 +0,0 @@
{ ... }:
{
chvp.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 ];
};
}

View file

@ -1,20 +0,0 @@
{ pkgs, ... }: {
hardware = {
opengl = {
driSupport32Bit = true;
extraPackages32 = with pkgs.pkgsi686Linux; [ libva ];
};
pulseaudio.support32Bit = true;
};
chvp.zfs.homeLinks = [
{ path = ".paradoxlauncher"; type = "data"; }
{ path = ".steam"; type = "data"; }
{ path = ".local/share/Steam"; type = "data"; }
{ path = ".local/share/Paradox Interactive"; type = "data"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = [ pkgs.steam ];
};
}