mirror of
https://github.com/Moe1369/nix-fleet.git
synced 2026-04-25 08:09:08 +02:00
18 lines
334 B
Nix
18 lines
334 B
Nix
{ inputs, config, ... }: {
|
|
flake.nixosModules.computer-mo = { user, ... }: {
|
|
imports = with inputs.self.nixosModules; [
|
|
base
|
|
desktop
|
|
singledisk
|
|
gdm
|
|
gnome-apps
|
|
gnome
|
|
brave
|
|
];
|
|
|
|
home-manager.users.${user}.imports = with config.flake.homeManagerModules; [
|
|
gnome
|
|
];
|
|
};
|
|
}
|