diff options
author | nin <nin@c-base.org> | 2018-02-11 16:11:08 +0100 |
---|---|---|
committer | nin <nin@c-base.org> | 2018-02-11 16:11:08 +0100 |
commit | f20bf1a7ba146b3ffe3f2e470614d12885cbce61 (patch) | |
tree | 092a5e5864814a42b854937a06b8d1ecb8a74402 /makefu/2configs/gui/base.nix | |
parent | 6849d7aa4810d5f1f2ec55d852d21812dd1b8002 (diff) | |
parent | dbd48fdbf91672dc96992ee0b55ad1da226d4199 (diff) |
Merge branch 'master' of prism:stockholm
Diffstat (limited to 'makefu/2configs/gui/base.nix')
-rw-r--r-- | makefu/2configs/gui/base.nix | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/makefu/2configs/gui/base.nix b/makefu/2configs/gui/base.nix index daa0282b8..861a9327e 100644 --- a/makefu/2configs/gui/base.nix +++ b/makefu/2configs/gui/base.nix @@ -48,13 +48,14 @@ in fonts = [ pkgs.terminus_font ]; }; - environment.systemPackages = with pkgs;[ - pavucontrol - xlockmore - rxvt_unicode-with-plugins - firefox - ]; - users.extraUsers.${mainUser}.extraGroups = [ "audio" ]; + users.users.${mainUser} = { + extraGroups = [ "audio" ]; + packages = with pkgs;[ + pavucontrol + xlockmore + rxvt_unicode-with-plugins + ]; + }; hardware.pulseaudio = { enable = true; |