lix + overlays

This commit is contained in:
2024-05-09 21:04:19 -06:00
parent 39157db0da
commit dc3f9651b1
8 changed files with 115 additions and 4 deletions

View File

@@ -2,6 +2,16 @@
description = "A very basic flake";
inputs = {
# lix = {
# url =
# "git+https://git@git.lix.systems/lix-project/lix?ref=refs/tags/2.90-beta.1";
# flake = false;
# };
# lix-module = {
# url = "git+https://git.lix.systems/lix-project/nixos-module";
# inputs.lix.follows = "lix";
# inputs.nixpkgs.follows = "nixpkgs";
# };
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-23.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs?ref=nixos-unstable";
home-manager.url = "github:nix-community/home-manager/release-23.11";
@@ -27,12 +37,14 @@
workstation = lib.nixosSystem {
inherit system;
modules = [
# lix-module.nixosModules.default
./hosts/workstation/configuration.nix
({ pkgs, ... }: {
nixpkgs.overlays = [
(self: super: {
planify = pkgsU.planify;
gdtoolkit = pkgsU.gdtoolkit;
gallery-dl = pkgsU.gallery-dl;
lutris = super.lutris.override {
extraPkgs = pkgs: [
pkgs.winetricks
@@ -45,6 +57,8 @@
};
handbrake = super.handbrake.override { useGtk = true; };
discord = super.discord.override { withOpenASAR = true; };
ripgrep = super.ripgrep.override { withPCRE2 = true; };
blender = super.blender.override { cudaSupport = true; };
})
];
})