mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 23:59:07 +02:00
15 lines
221 B
Nix
15 lines
221 B
Nix
{ inputs, ... }: {
|
|
flake.nixosModules.base = {
|
|
imports = with inputs.self.nixosModules; [
|
|
boot
|
|
firmware
|
|
locale
|
|
networking
|
|
security
|
|
shellapps
|
|
version
|
|
zsh
|
|
];
|
|
};
|
|
}
|