restored gnome extensions to aly home-manager config

This commit is contained in:
Aly Raffauf 2024-03-13 09:18:14 -04:00
parent 8319ab8a9b
commit be022ee13a
2 changed files with 23 additions and 0 deletions

View file

@ -19,6 +19,14 @@
gh
git
github-desktop
gnomeExtensions.appindicator
gnomeExtensions.blur-my-shell
gnomeExtensions.gsconnect
gnomeExtensions.light-shell
gnomeExtensions.night-theme-switcher
gnomeExtensions.noannoyance-fork
gnomeExtensions.tailscale-status
gnomeExtensions.tiling-assistant
syncthing
vscode
warp-terminal

15
home/nixos/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ config, pkgs, ... }:
{
imports = [
../common.nix
];
home.username = "nixos";
home.homeDirectory = "/home/nixos";
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
gparted
];
}