Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 3, 2025
1 parent 5f53a00 commit 2c8e5ac
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 18 deletions.
4 changes: 4 additions & 0 deletions flake-modules/packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
...
}:
{
imports = [
# ../packages/default.nix
];

# packages = import ../docs {
# inherit system;
# inherit (inputs) nixpkgs;
Expand Down
37 changes: 19 additions & 18 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
outputs =
inputs@{ flake-parts, self, ... }:
flake-parts.lib.mkFlake { inherit inputs; } {
imports = [ ./flake-modules ];
imports = [
./flake-modules
# inputs.flake-parts.flakeModules.flakeModules
# inputs.flake-parts.flakeModules.modules
];

systems = [
"x86_64-linux"
Expand All @@ -18,23 +22,20 @@
# ];
# };
#
homes.modules = with inputs; [
anyrun.homeManagerModules.default
catppuccin.homeManagerModules.catppuccin
hypr-socket-watch.homeManagerModules.default
nix-index-database.hmModules.nix-index
nur.hmModules.nur
sops-nix.homeManagerModules.sops
];

systems = {
modules = {
darwin = with inputs; [ sops-nix.darwinModules.sops ];
nixos = with inputs; [
lanzaboote.nixosModules.lanzaboote
sops-nix.nixosModules.sops
];
};
modules = {
darwin = with inputs; [ sops-nix.darwinModules.sops ];
homes = with inputs; [
anyrun.homeManagerModules.default
catppuccin.homeManagerModules.catppuccin
hypr-socket-watch.homeManagerModules.default
nix-index-database.hmModules.nix-index
nur.hmModules.nur
sops-nix.homeManagerModules.sops
];
nixos = with inputs; [
lanzaboote.nixosModules.lanzaboote
sops-nix.nixosModules.sops
];
};

deploy = {
Expand Down

0 comments on commit 2c8e5ac

Please sign in to comment.