Configure gnome themeing

This commit is contained in:
Isshi0417 2024-07-21 14:16:59 +09:00
parent 13a4a0a777
commit 1e158feaba
4 changed files with 10 additions and 1 deletions

View File

@ -89,7 +89,7 @@
};
};
home-manager.backupFileExtension = "backup-9";
home-manager.backupFileExtension = "backup-10";
environment.sessionVariables = {
FLAKE = "/home/shoi/etc/nixos";

View File

@ -8,6 +8,7 @@
./oh-my-posh
./nixvim
./helix
./gnome
];
# Allow Unfree

View File

@ -0,0 +1,7 @@
{ pkgs,... }:
{
home.packages = with pkgs; [
gnomeExtensions.pop-shell
];
}

View File

@ -3,5 +3,6 @@
{
imports = [
./plasma.nix
./gnome.nix
];
}