nixos-config/config/desktop.nix

26 lines
476 B
Nix
Raw Normal View History

2022-01-18 13:55:16 +00:00
{ pkgs, ... }: {
imports = [
./services/sway.nix
2022-01-18 19:57:00 +00:00
./services/pipewire.nix
2022-01-18 13:55:16 +00:00
];
fonts.fonts = with pkgs; [
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
liberation_ttf
fira-code
fira-code-symbols
mplus-outline-fonts
dina-font
proggyfonts
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
];
2022-01-18 16:17:38 +00:00
zramSwap = {
enable = true;
};
2022-01-18 16:19:54 +00:00
time.timeZone = "Etc/GMT-1"; # Confusing naming, it's 1 hour east of GMT
2022-01-18 13:55:16 +00:00
}