nix/hosts/laptop/default.nix
2024-11-17 10:39:33 +01:00

15 lines
274 B
Nix

{username, ...}: {
networking.hostName = "laptop";
virtualisation.virtualbox.host.enable = true;
led.enable = true;
gnome.enable = true;
home-manager.users.${username} = {
hypridle.enable = true;
};
imports = [
./hardware.nix
../../modules
];
}