nixos-config/system/desktop/default.nix

80 lines
1.3 KiB
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, pkgs, lib, ... }:
{
imports = [
<system/all>
#./icecast.nix
./audio.nix
./browser.nix
./cachix.nix
./direnv.nix
./dnsmasq.nix
./home-manager.nix
./mail-stuff.nix
./mc.nix
./network.nix
./packages.nix
./pass.nix
./remote-install.nix
./restic.nix
./size.nix
./sshd.nix
./suspend.nix
./user.nix
./x11.nix
./xlock.nix
./yubikey.nix
];
programs.custom = {
urxvt = {
enable = true;
colorTheme = "light";
};
xterm = {
enable = true;
colorTheme = "light";
};
shellTools.enable = true;
taskwarrior.enable = true;
curlScripts.enable = true;
git.enable = true;
citate.enable = true;
vim.enable = true;
q = {
enable = true;
2019-11-15 22:53:54 +01:00
timeZones = [
"Pacific/Auckland"
"Europe/Berlin"
2019-11-25 21:47:17 +01:00
"America/Los_Angeles"
2019-11-15 22:53:54 +01:00
];
2019-10-24 02:20:38 +02:00
};
};
services.urxvtd.enable = true;
system.custom = {
bluetooth.enable = true;
};
# overwrite use zram on small RAM systems
fileSystems."/share/" = lib.mkDefault {
device = "tmpfs";
fsType = "tmpfs";
};
# overwrite use zram on small RAM systems
fileSystems."/browsers/" = lib.mkDefault {
device = "tmpfs";
fsType = "tmpfs";
};
}