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
|
2022-01-19 10:58:37 +00:00
|
|
|
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" "Noto" ]; })
|
2022-01-18 13:55:16 +00:00
|
|
|
];
|
2022-01-18 16:17:38 +00:00
|
|
|
|
|
|
|
zramSwap = {
|
|
|
|
enable = true;
|
|
|
|
};
|
2022-01-19 08:28:39 +00:00
|
|
|
|
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
|
|
|
}
|