mirror of
https://github.com/inexcode/nixos-config.git
synced 2024-12-04 20:36:34 +00:00
28 lines
536 B
Nix
28 lines
536 B
Nix
# 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’).
|
||
|
||
{ config, pkgs, lib, fetchpatch, ... }:
|
||
|
||
let
|
||
unstable = import <nixos-unstable> { };
|
||
in
|
||
{
|
||
imports =
|
||
[
|
||
# Include the results of the hardware scan.
|
||
./common.nix
|
||
./pipewire.nix
|
||
];
|
||
|
||
#chaotic.hdr.enable = true;
|
||
|
||
# Video driver
|
||
hardware = {
|
||
pulseaudio = {
|
||
enable = false;
|
||
};
|
||
};
|
||
|
||
}
|