lix + overlays
This commit is contained in:
14
flake.nix
14
flake.nix
@@ -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; };
|
||||
})
|
||||
];
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user