fix hmModule
This commit is contained in:
parent
4f62f30421
commit
cdabd0cc44
3 changed files with 24 additions and 22 deletions
|
@ -1,21 +1,22 @@
|
||||||
|
{ self, ... }@inputs:
|
||||||
{
|
{
|
||||||
alacritty = ./alacritty;
|
alacritty = import ./alacritty;
|
||||||
colors = ./colors.nix;
|
colors = import ./colors.nix;
|
||||||
direnv = ./direnv.nix;
|
direnv = import ./direnv.nix;
|
||||||
fish = ./fish.nix;
|
fish = import ./fish.nix;
|
||||||
git = ./git.nix;
|
git = import ./git.nix;
|
||||||
gpg = ./gpg.nix;
|
gpg = import ./gpg.nix;
|
||||||
gtk = ./gtk.nix;
|
gtk = import ./gtk.nix;
|
||||||
keyring = ./keyring.nix;
|
keyring = import ./keyring.nix;
|
||||||
kitty = ./kitty;
|
kitty = import ./kitty;
|
||||||
mako = ./mako.nix;
|
mako = import ./mako.nix;
|
||||||
session = ./session.nix;
|
session = import ./session.nix;
|
||||||
ssh = ./ssh.nix;
|
ssh = import ./ssh.nix;
|
||||||
sway = ./sway;
|
sway = import ./sway;
|
||||||
syncthing = ./syncthing.nix;
|
syncthing = import ./syncthing.nix;
|
||||||
termite = ./termite.nix;
|
termite = import ./termite.nix;
|
||||||
tmux = ./tmux.nix;
|
tmux = import ./tmux.nix;
|
||||||
vim = ./vim;
|
vim = import ./vim;
|
||||||
xdg = ./xdg.nix;
|
xdg = import ./xdg.nix;
|
||||||
zsh = ./zsh.nix;
|
zsh = import ./zsh.nix;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
{ ... }@inputs:
|
||||||
{
|
{
|
||||||
admin = import ./admin.nix;
|
admin = import ./admin.nix;
|
||||||
backup = import ./backup.nix;
|
backup = import ./backup.nix;
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
, nixos-hardware
|
, nixos-hardware
|
||||||
, nvd
|
, nvd
|
||||||
, ...
|
, ...
|
||||||
}:
|
}@inputs:
|
||||||
(flake-utils.lib.eachSystem ["x86_64-linux"] (system:
|
(flake-utils.lib.eachSystem ["x86_64-linux"] (system:
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
|
@ -57,12 +57,12 @@
|
||||||
hmConfigurations = import ./home/configurations.nix {
|
hmConfigurations = import ./home/configurations.nix {
|
||||||
inherit self nixpkgs home-manager nvd;
|
inherit self nixpkgs home-manager nvd;
|
||||||
};
|
};
|
||||||
hmModules = import ./home/modules;
|
hmModules = import ./home/modules inputs;
|
||||||
nixosConfigurations = import ./nixos/configurations.nix {
|
nixosConfigurations = import ./nixos/configurations.nix {
|
||||||
nixosSystem = nixpkgs.lib.nixosSystem;
|
nixosSystem = nixpkgs.lib.nixosSystem;
|
||||||
inherit self nixpkgs home-manager nixos-hardware;
|
inherit self nixpkgs home-manager nixos-hardware;
|
||||||
};
|
};
|
||||||
nixosModules = import ./nixos/modules;
|
nixosModules = import ./nixos/modules inputs;
|
||||||
overlays = import ./overlays;
|
overlays = import ./overlays;
|
||||||
pythonPackages = import ./pkgs/python-pkgs;
|
pythonPackages = import ./pkgs/python-pkgs;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue