nix/nixos/musicbox/default.nix

30 lines
578 B
Nix
Raw Normal View History

2023-10-03 11:52:44 -05:00
{
2023-10-03 16:26:45 -05:00
flake,
2023-10-03 11:52:44 -05:00
inputs,
2023-10-03 16:26:45 -05:00
outputs,
# lib,
# config,
# pkgs,
2023-10-03 11:52:44 -05:00
...
2023-10-03 16:26:45 -05:00
}: {
networking.hostName = "musicbox";
2023-09-04 11:40:30 -05:00
2023-10-03 16:26:45 -05:00
imports =
[
inputs.disko.nixosModules.disko
flake.diskoConfigurations.unencrypted
]
++ (with outputs.nixosModules; [
# If you want to use modules your own flake exports (from modules/nixos):
desktop-usage
wifi
]);
2023-09-04 11:40:30 -05:00
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
hardware.bluetooth.enable = true;
networking.networkmanager.enable = true;
system.stateVersion = "23.05";
}