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