Separated applications and destops

This commit is contained in:
panotaka
2024-01-11 10:10:52 -04:00
parent ca11bf8250
commit ac8aa927d2
10 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
{pkgs, ...}: {
imports = [
./shell.nix
];
home.packages = with pkgs; [
gnome-extension-manager
gnome.dconf-editor
mission-center
];
}

View File

@@ -0,0 +1,11 @@
{pkgs, ...}: {
dconf.settings = {
};
# Extensions
home.packages = with pkgs.gnomeExtensions; [
forge
#gjs-osk
screen-rotate
];
}