[NixOS] Remove forAll
This commit is contained in:
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user