17 lines
361 B
Nix
17 lines
361 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|