nixos/modules/hosts/crow/configuration.nix

18 lines
361 B
Nix
Raw Normal View History

2026-04-26 16:09:24 +00:00
{ self, inputs, ... }: {
flake.nixosModules.crowConfiguration = { pkgs, lib, ... }: {
imports = [
./hardware-configuration.nix
];
nix.settings.experimental-features = [ "nix-commands" "flakes" ];
environment.systemPackages = with pkgs; [
pavucontrol
bolt-launcher
wine
usbutils
virt-manager
];
};
}