mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
16 lines
341 B
Nix
16 lines
341 B
Nix
let
|
|
modules = import ../../modules;
|
|
in
|
|
{
|
|
# Common nixos systems modules (not nix-darwin)
|
|
imports = [
|
|
modules.common.nix
|
|
modules.common.direnv
|
|
modules.nixos.swap
|
|
modules.nixos.locale # For localisation options
|
|
modules.common.ssh
|
|
modules.nixos.bootloader
|
|
modules.common.environment
|
|
];
|
|
}
|