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