firefox wayland

This commit is contained in:
Cyryl Płotnicki 2020-07-04 17:30:29 +01:00
parent a419bb1dda
commit aaa17621b4
4 changed files with 53 additions and 1 deletions

View file

@ -26,7 +26,7 @@ in
environment.enableDebugInfo = true;
environment.systemPackages = with pkgs; [
wget git gnupg curl tmux htop atop firefox home-manager alacritty pciutils powertop ripgrep-all fd dnsutils
wget git gnupg curl tmux htop atop home-manager pciutils powertop ripgrep-all fd dnsutils
];
i18n.defaultLocale = "en_GB.UTF-8";

View file

@ -0,0 +1,42 @@
{ config, pkgs, ... }:
{
services = {
};
xsession = {
enable = false;
};
programs.gnome-terminal = {
enable = true;
profile = {
cyplo = {
visibleName = "peninsula";
default = true;
font = "Fira Code Nerd Font";
colors = {
foregroundColor = "#838394949696";
backgroundColor = "#00002B2B3636";
palette = [
"#070736364242"
"#DCDC32322F2F"
"#858599990000"
"#B5B589890000"
"#26268B8BD2D2"
"#D3D336368282"
"#2A2AA1A19898"
"#EEEEE8E8D5D5"
"#00002B2B3636"
"#CBCB4B4B1616"
"#58586E6E7575"
"#65657B7B8383"
"#838394949696"
"#6C6C7171C4C4"
"#9393A1A1A1A1"
"#FDFDF6F6E3E3"
];
};
};
};
};
}

View file

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.xserver = {
enable = true;
desktopManager.enlightenment.enable = true;
};
users.users.cyryl.packages = with pkgs; [];
}

View file

@ -33,5 +33,6 @@
qemu aqemu foldingathome
spotify shotwell
gnome-builder flatpak-builder flatpak python38Packages.lxml python38Packages.jedi meson
firefox-wayland
];
}