mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
417623965e
also change theme to colorscheme
14 lines
237 B
Nix
14 lines
237 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
sound.enable = true;
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
pamixer # Audio control
|
|
];
|
|
};
|
|
|
|
}
|