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