amd drivers, fish shell, nixos-unstable, plasma6

This commit is contained in:
mjallen18
2024-02-02 09:30:26 -06:00
parent 6eb29a4914
commit cca32e7d47
5 changed files with 230 additions and 14 deletions

13
cachix.nix Normal file
View File

@@ -0,0 +1,13 @@
# WARN: this file will get overwritten by $ cachix use <name>
{ pkgs, lib, ... }:
let
folder = ./cachix;
toImport = name: value: folder + ("/" + name);
filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key;
imports = lib.mapAttrsToList toImport (lib.filterAttrs filterCaches (builtins.readDir folder));
in {
inherit imports;
nix.settings.substituters = ["https://cache.nixos.org/"];
}