stockholm/modules/lass/desktop-base.nix

38 lines
568 B
Nix
Raw Normal View History

2015-04-09 23:37:29 +00:00
{ config, pkgs, ... }:
{
2015-05-15 21:19:35 +00:00
imports = [
./base.nix
2015-04-09 23:37:29 +00:00
];
time.timeZone = "Europe/Berlin";
virtualisation.libvirtd.enable = true;
hardware.pulseaudio = {
enable = true;
systemWide = true;
};
programs.ssh.startAgent = false;
security.setuidPrograms = [ "slock" ];
services.printing = {
enable = true;
drivers = [ pkgs.foomatic_filters ];
};
environment.systemPackages = with pkgs; [
powertop
#window manager stuff
2015-04-09 23:37:29 +00:00
haskellPackages.xmobar
haskellPackages.yeganesh
dmenu2
xlibs.fontschumachermisc
];
}