Compare commits
2 commits
550344240a
...
c9133fc96a
Author | SHA1 | Date | |
---|---|---|---|
|
c9133fc96a | ||
|
e2d025f447 |
|
@ -4,16 +4,5 @@
|
|||
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-neovim.url = "git+https://git.thewizard.link/wizardlink/neovim";
|
||||
wizardlink.url = "git+https://git.thewizard.link/wizardlink/linuxware";
|
||||
};
|
||||
|
||||
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-neovim }:
|
||||
{ wizardlink }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
wizardlink-neovim.homeManagerModules.default
|
||||
wizardlink.homeManagerModules.neovim
|
||||
];
|
||||
}
|
||||
```
|
||||
|
|
|
@ -58,6 +58,27 @@
|
|||
};
|
||||
};
|
||||
|
||||
#
|
||||
# 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