diff options
author | Ben Sima <ben@bsima.me> | 2019-05-13 17:28:42 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2019-05-13 17:28:42 -0700 |
commit | e8c4a81a851df8dd808ace1f919260ca1495d7bc (patch) | |
tree | ee3f6a649ca5c41689ad34bf4b732b9878ff85f3 | |
parent | dcbdab105a35c3c604c669fbe31bad1199239252 (diff) |
laptop: remove virtualization, add sound, light, xkbOptions
-rw-r--r-- | machines/helium.nix | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/machines/helium.nix b/machines/helium.nix index 13fbd99..daef738 100644 --- a/machines/helium.nix +++ b/machines/helium.nix @@ -36,19 +36,17 @@ }; }; - virtualisation = { - libvirtd.enable = true; - docker.enable = true; - virtualbox.guest.enable = true; - virtualbox.host.enable = true; - virtualbox.host.headless = false; - virtualbox.host.addNetworkInterface = true; - + sound = { + enable = true; + mediaKeys = { + enable = true; + }; }; programs = { bash.enableCompletion = true; command-not-found.enable = true; + light.enable = true; gnupg.agent = { enable = true; enableSSHSupport = true; @@ -77,6 +75,8 @@ layout = "us"; libinput.enable = true; + xkbOptions = "caps:ctrl_modifier"; + displayManager.sddm.enable = true; desktopManager = { |