This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/profiles/graphical.nix

13 lines
218 B
Nix
Raw Permalink Normal View History

2021-12-15 05:27:39 +00:00
{ config, lib, pkgs, ... }: {
2022-05-03 04:11:02 +00:00
imports = [ ./minimal.nix ];
2021-11-28 01:10:36 +00:00
2022-08-14 02:42:04 +00:00
my = {
2022-03-24 22:02:46 +00:00
graphical.enable = true;
system.power.enable = true;
};
2021-12-14 05:24:26 +00:00
2021-11-28 01:10:36 +00:00
# Enable sound.
sound.enable = true;
hardware.pulseaudio.enable = true;
}