mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
14 lines
460 B
Nix
14 lines
460 B
Nix
# The declarative environment management modules. Basically the backbone of my
|
|
# flake. Most of the modules here should have some things integrated within
|
|
# each other such as the ability to easily declare home-manager users (or a
|
|
# NixVim instance) into a NixOS system from already existing declared
|
|
# home-manager users (or NixVim instances) in the flake config.
|
|
{
|
|
imports = [
|
|
./disko.nix
|
|
./nixos.nix
|
|
./nixvim.nix
|
|
./home-manager.nix
|
|
];
|
|
}
|