forked from Shinonome/omarchy-nix
fba993c589
* Set nix official formatter for the flake * format the entire project
19 lines
266 B
Nix
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)
|
|
];
|
|
}
|