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