Files
omarchy-nix/modules/nixos/default.nix
T
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

19 lines
266 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 ./containers.nix)
];
}