feat(gnome): add tailscale-status extension

This commit is contained in:
Felix Schröter 2023-12-27 15:50:54 +01:00
parent 8679912bfb
commit 5bffccc02e
Signed by: felschr
GPG key ID: 671E39E6744C807D
2 changed files with 5 additions and 2 deletions

View file

@ -1,14 +1,16 @@
{ config, pkgs, ... }:
{ pkgs, ... }:
{
environment.systemPackages = with pkgs;
with gnomeExtensions; [
gnome.dconf-editor
gnome.gnome-tweaks
gnome.zenity
native-window-placement
appindicator
pop-shell
gnome-bedtime
tailscale-status
];
services.xserver.displayManager.gdm.enable = true;

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }:
{ lib, ... }:
let
left = "h";
@ -14,6 +14,7 @@ in {
"native-window-placement@gnome-shell-extensions.gcampax.github.com" # works better with pop-shell
"appindicatorsupport@rgcjonas.gmail.com"
"gnomebedtime@ionutbortis.gmail.com"
"tailscale-status@maxgallup.github.com"
];
favorite-apps = [ "org.gnome.Nautilus.desktop" "mullvadbrowser.desktop" ];
};