nixos-config/Desktop/configuration.nix

26 lines
505 B
Nix
Raw Permalink Normal View History

2020-10-16 11:33:25 +00:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
2022-06-17 12:49:55 +00:00
{ config, pkgs, lib, fetchpatch, ... }:
2020-10-16 11:33:25 +00:00
let
2022-06-17 12:49:55 +00:00
unstable = import <nixos-unstable> { };
in
{
2020-10-16 11:33:25 +00:00
imports =
2022-06-17 12:49:55 +00:00
[
# Include the results of the hardware scan.
./common.nix
./pipewire.nix
2020-10-16 11:33:25 +00:00
];
# Video driver
hardware = {
pulseaudio = {
2022-06-17 12:49:55 +00:00
enable = false;
2020-10-16 11:33:25 +00:00
};
};
}