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