2023-01-12 09:28:19 +00:00
|
|
|
{ config, pkgs, ... }: {
|
|
|
|
services = { };
|
2020-05-10 09:23:36 +01:00
|
|
|
|
2023-01-12 09:28:19 +00:00
|
|
|
xsession = { enable = false; };
|
2020-05-10 09:23:36 +01:00
|
|
|
|
2023-01-12 09:28:19 +00:00
|
|
|
home.packages = with pkgs; [ gnome-usage gnome3.gnome-tweaks ];
|
|
|
|
|
|
|
|
dconf.settings = {
|
|
|
|
"org/gnome/mutter" = {
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/114514#issuecomment-1177709271
|
|
|
|
experimental-features = [ "scale-monitor-framebuffer" ];
|
|
|
|
};
|
2023-02-26 18:50:56 +00:00
|
|
|
"org/gnome/shell" = {
|
|
|
|
disable-user-extensions = false;
|
|
|
|
|
|
|
|
# `gnome-extensions list` for a list
|
2023-03-18 09:52:05 +00:00
|
|
|
# installed via system.nix
|
2023-02-26 18:50:56 +00:00
|
|
|
enabled-extensions = [
|
|
|
|
"caffeine@patapon.info"
|
|
|
|
"clipboard-indicator@tudmotu.com"
|
2023-03-18 09:52:05 +00:00
|
|
|
"Vitals@CoreCoding.com"
|
2023-02-26 18:50:56 +00:00
|
|
|
];
|
|
|
|
};
|
2023-01-12 09:28:19 +00:00
|
|
|
};
|
2020-07-05 10:32:18 +01:00
|
|
|
|
2020-05-10 10:21:01 +01:00
|
|
|
programs.gnome-terminal = {
|
|
|
|
enable = true;
|
|
|
|
profile = {
|
|
|
|
cyplo = {
|
|
|
|
visibleName = "peninsula";
|
|
|
|
default = true;
|
2023-02-26 18:50:56 +00:00
|
|
|
font = "Berkeley Mono";
|
2020-05-10 10:21:01 +01:00
|
|
|
colors = {
|
|
|
|
foregroundColor = "#838394949696";
|
|
|
|
backgroundColor = "#00002B2B3636";
|
|
|
|
palette = [
|
|
|
|
"#070736364242"
|
|
|
|
"#DCDC32322F2F"
|
|
|
|
"#858599990000"
|
|
|
|
"#B5B589890000"
|
|
|
|
"#26268B8BD2D2"
|
|
|
|
"#D3D336368282"
|
|
|
|
"#2A2AA1A19898"
|
|
|
|
"#EEEEE8E8D5D5"
|
|
|
|
"#00002B2B3636"
|
|
|
|
"#CBCB4B4B1616"
|
|
|
|
"#58586E6E7575"
|
|
|
|
"#65657B7B8383"
|
|
|
|
"#838394949696"
|
|
|
|
"#6C6C7171C4C4"
|
|
|
|
"#9393A1A1A1A1"
|
|
|
|
"#FDFDF6F6E3E3"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2020-05-10 09:23:36 +01:00
|
|
|
}
|