moved nixos folder to main folder.

This commit is contained in:
Ingolf Wagner 2024-06-07 22:56:52 +02:00
commit 3ded20e880
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B
274 changed files with 17 additions and 17 deletions
components/gui/home-manager

View file

@ -0,0 +1,11 @@
{ pkgs, lib, config, ... }:
with lib;
{
config = mkIf config.components.gui.enable {
# don't run autoload -U compinit && compinit before ~/.zshrc
programs.zsh.enableGlobalCompInit = false;
};
}