nix/hosts/craptop/default.nix

17 lines
423 B
Nix
Raw Normal View History

2024-06-05 20:52:52 +02:00
{ config, lib, pkgs, modulesPath, inputs, ... }:
{
networking.hostName = "craptop";
networking.networkmanager.enable = true;
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/nvme0n1";
boot.loader.grub.useOSProber = true;
2024-06-06 10:37:03 +02:00
services.blueman.enable = true;
hardware.bluetooth.enable = true;
2024-06-05 20:52:52 +02:00
imports = [
../../modules
./hardware.nix
inputs.home-manager.nixosModules.default
];
}