changed gnome look

This commit is contained in:
k 2024-09-21 17:41:12 -04:00
parent aa44b4dbc8
commit 0174e0f47a
3 changed files with 26 additions and 5 deletions

25
hosts/home/gnome.nix Normal file
View File

@ -0,0 +1,25 @@
{ config, pkgs, inputs, ... }:
{
# ...
dconf.settings = {
# ...
"org/gnome/shell" = {
disable-user-extensions = false;
# `gnome-extensions list` for a list
enabled-extensions = [
"Vitals@CoreCoding.com"
"blur-my-shell@aunetx"
"search-light@icedman.github.com"
];
};
};
home.packages = with pkgs; [
gnomeExtensions.vitals
gnomeExtensions.blur-my-shell
gnomeExtensions.search-light
];
}

View File

@ -111,16 +111,11 @@
gnome-tour gnome-tour
xterm xterm
cheese # webcam tool cheese # webcam tool
gnome-music
gnome-weather
gnome-calendar
gnome-contacts gnome-contacts
gnome-clocks gnome-clocks
gnome-maps gnome-maps
epiphany # web browser
geary # email reader geary # email reader
evince # document viewer evince # document viewer
gnome-characters
totem # video player totem # video player
tali # poker game tali # poker game
iagno # go game iagno # go game

View File

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
../home/home_common.nix ../home/home_common.nix
../home/gnome.nix
]; ];
stylix.enable = true; stylix.enable = true;