Compare commits
No commits in common. "c9133fc96a02ce27b02527cdec2e81445f4bf4ea" and "550344240a7b04bfde2ea3d9a0ee1a1e477173a5" have entirely different histories.
c9133fc96a
...
550344240a
|
@ -4,5 +4,16 @@
|
|||
programs.direnv = {
|
||||
enable = true;
|
||||
nix-direnv.enable = true;
|
||||
|
||||
config = {
|
||||
whitelist = {
|
||||
prefix = [
|
||||
"/mnt/internal/personal/projects"
|
||||
"/mnt/internal/repos"
|
||||
"/mnt/internal/shared/projects"
|
||||
"/mnt/internal/shared/work"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@ First you add this repository as a flake input:
|
|||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
wizardlink.url = "git+https://git.thewizard.link/wizardlink/linuxware";
|
||||
wizardlink-neovim.url = "git+https://git.thewizard.link/wizardlink/neovim";
|
||||
};
|
||||
|
||||
outputs = { home-manager, ... }@inputs: {
|
||||
|
@ -34,11 +34,11 @@ First you add this repository as a flake input:
|
|||
Then in your [Home Manager] configuration you can just import it:
|
||||
|
||||
```nix
|
||||
{ wizardlink }:
|
||||
{ wizardlink-neovim }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
wizardlink.homeManagerModules.neovim
|
||||
wizardlink-neovim.homeManagerModules.default
|
||||
];
|
||||
}
|
||||
```
|
||||
|
|
|
@ -58,27 +58,6 @@
|
|||
};
|
||||
};
|
||||
|
||||
#
|
||||
# PACKAGES #
|
||||
#
|
||||
|
||||
programs.direnv = {
|
||||
config = {
|
||||
whitelist = {
|
||||
prefix = [
|
||||
"/mnt/internal/personal/projects"
|
||||
"/mnt/internal/repos"
|
||||
"/mnt/internal/shared/projects"
|
||||
"/mnt/internal/shared/work"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
#
|
||||
# MODULES #
|
||||
#
|
||||
|
||||
# Add monitor configuration to hyprland
|
||||
modules.hyprland.extraConfig = # hyprlang
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue