mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-06 02:39:27 -05:00
16 lines
260 B
Nix
16 lines
260 B
Nix
inputs: {
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
cfg = config.omarchy;
|
|
packages = import ../packages.nix {inherit pkgs;};
|
|
in {
|
|
imports = [
|
|
(import ./hyprland.nix inputs)
|
|
(import ./system.nix)
|
|
(import ./1password.nix)
|
|
(import ./podman.nix)
|
|
];
|
|
}
|