cosmic updates

This commit is contained in:
RingOfStorms (Joshua Bell) 2024-10-10 16:42:35 -05:00
parent 913cff0ffa
commit e5ade464b9
6 changed files with 24 additions and 11 deletions

View file

@ -2,6 +2,7 @@
pkgs,
settings,
lib,
nixConfig,
...
}:
with lib.hm.gvariant;
@ -10,13 +11,13 @@ with lib.hm.gvariant;
# use `dconf dump /` before and after and diff the files for easy editing of dconf below
# > `dconf dump / > /tmp/dconf_dump_start && watch -n0.5 "dconf dump / > /tmp/dconf_dump_current && diff --color /tmp/dconf_dump_start /tmp/dconf_dump_current -U12"`
# OR (Must be logged into user directly, no SU to user will work): `dconf watch /`
# OR get the exact converted config from `dconf dump / | dconf2nix | less` and search with forward slash
# OR get the exact converted nixConfig from `dconf dump / | dconf2nix | less` and search with forward slash
# gnome.dconf-editor
# gnomeExtensions.workspace-switch-wraparound
#gnomeExtensions.forge # probably don"t need on this on tiny laptop but may explore this instead of sway for my desktop
];
dconf = {
dconf = lib.mkIf (!nixConfig.mods.de_cosmic.enable) {
enable = true;
settings = {
"org/gnome/desktop/session" = {

View file

@ -1,6 +1,6 @@
{ pkgs, ... }:
{ pkgs, lib, nixConfig, ... }:
{
gtk = {
gtk = lib.mkIf (!nixConfig.mods.de_cosmic.enable) {
enable = true;
cursorTheme = {

View file

@ -1,4 +1,9 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [ gnome.nautilus qimgv ];
pkgs,
lib,
nixConfig,
...
}:
{
home.packages = lib.mkIf (!nixConfig.mods.de_cosmic.enable) (with pkgs; [ gnome.nautilus qimgv ]);
}