[NixOS] Remove forAll

This commit is contained in:
2021-08-20 19:28:51 -06:00
parent 4fbef3f0a3
commit 6b25eb24fb
4 changed files with 189 additions and 91 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, options, ... }:
{ config, pkgs, options, inputs, ... }:
{
imports = [
./users.nix
@@ -7,6 +7,22 @@
./environment.nix
];
nix = {
extraOptions = ''
experimental-features = nix-command flakes ca-references
'';
registry.nixpkgs.flake = inputs.nixpkgs;
};
nixpkgs.overlays = with inputs; [
nix.overlay
xmonad.overlay
xmonad-contrib.overlay
notifications-tray-icon.overlay
(import ../dotfiles/config/taffybar/overlay.nix)
(import ./overlay.nix)
] ++ taffybar.overlays;
# Allow all the things
nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [