stockholm/modules/lass/desktop-base.nix

38 lines
568 B
Nix
Raw Normal View History

2015-04-10 01:37:29 +02:00
{ config, pkgs, ... }:
{
2015-05-15 23:19:35 +02:00
imports = [
./base.nix
2015-04-10 01:37:29 +02: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-10 01:37:29 +02:00
haskellPackages.xmobar
haskellPackages.yeganesh
dmenu2
xlibs.fontschumachermisc
];
}