gnome: move modules/gui/gnome.nix -> hosts/modules/gui/gnome.nix

This commit is contained in:
Colin 2023-01-30 01:42:12 +00:00
parent 6c85c6ecd8
commit ae22865099
3 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{ ... }: { ... }:
{ {
imports = [ imports = [
./gnome.nix
./phosh.nix ./phosh.nix
./sway.nix ./sway.nix
]; ];

View File

@ -25,7 +25,7 @@ in
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.wireless.enable = lib.mkForce false; networking.wireless.enable = lib.mkForce false;
}; };
# home-mananger.users.colin extras # user extras:
# obtain these by running `dconf dump /` after manually customizing gnome # obtain these by running `dconf dump /` after manually customizing gnome
# TODO: fix "is not of type `GVariant value'" # TODO: fix "is not of type `GVariant value'"
# dconf.settings = lib.mkIf (gui == "gnome") { # dconf.settings = lib.mkIf (gui == "gnome") {

View File

@ -6,7 +6,6 @@ let
in in
{ {
imports = [ imports = [
./gnome.nix
./plasma.nix ./plasma.nix
./plasma-mobile.nix ./plasma-mobile.nix
]; ];