mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-24 15:59:06 +02:00
17 lines
322 B
Nix
17 lines
322 B
Nix
{ inputs, config, user, ... }: {
|
|
flake.nixosModules.computer-mo = {
|
|
imports = with inputs.self.nixosModules; [
|
|
base
|
|
desktop
|
|
singledisk
|
|
gdm
|
|
gnome-apps
|
|
gnome
|
|
];
|
|
|
|
home-manager.users.${user}.imports = with config.flake.homeManagerModules; [
|
|
gnome-settings
|
|
];
|
|
};
|
|
}
|