Re-add GNOME to fix the thunar theme and see if it

...fixes autorandr
This commit is contained in:
Oliver Davies 2024-07-22 12:00:00 +01:00
parent 3ae1d8d51d
commit e63150e278
4 changed files with 8 additions and 19 deletions

View file

@ -6,22 +6,6 @@
}:
{ pkgs, ... }:
let
configure-gtk = pkgs.writeTextFile {
name = "configure-gtk";
destination = "/bin/configure-gtk";
executable = true;
text =
let
schema = pkgs.gsettings-desktop-schemas;
datadir = "${schema}/share/gsettings-schemas/${schema.name}";
in
''
export XDG_DATA_DIRS=${datadir}:$XDG_DATA_DIRS
gnome_schema=org.gnome.desktop.interface
gsettings set $gnome_schema gtk-theme 'Breeze Dark'
'';
};
theme = import "${self}/lib/theme" { inherit pkgs; };
username = "opdavies";
@ -164,7 +148,6 @@ in
arandr
backintime
brightnessctl
configure-gtk
cpufrequtils
ffmpegthumbnailer
libnotify

View file

@ -38,8 +38,6 @@ inputs.nixpkgs.lib.nixosSystem {
};
}
(import ./modules/autorandr.nix)
(import ./modules/awesome.nix {
inherit
inputs
@ -48,6 +46,8 @@ inputs.nixpkgs.lib.nixosSystem {
username
;
})
(import ./modules/autorandr.nix)
(import ./modules/gnome.nix)
configuration
hardwareConfiguration

View file

@ -9,6 +9,7 @@
./modules/alacritty.nix
./modules/copyq.nix
./modules/espanso.nix
./modules/gtk.nix
./modules/feh.nix
./modules/flameshot.nix
./modules/gtk.nix

View file

@ -0,0 +1,5 @@
{
services = {
xserver.desktopManager.gnome.enable = true;
};
}