diff --git a/modules/other/module.nix b/modules/other/module.nix index 044212a..7c23bd0 100644 --- a/modules/other/module.nix +++ b/modules/other/module.nix @@ -1,6 +1,6 @@ _: { imports = [ - ./home-manager.nix + # ./home-manager.nix ./system.nix ./xdg.nix ./git.nix diff --git a/modules/programs/gui/module.nix b/modules/programs/gui/module.nix index 29b9c0f..d8eb7bc 100644 --- a/modules/programs/gui/module.nix +++ b/modules/programs/gui/module.nix @@ -3,7 +3,7 @@ _: { ./foot.nix ./spicetify.nix ./steam.nix - ./schizofox.nix + # ./schizofox.nix ./minecraft.nix ]; } diff --git a/modules/style/module.nix b/modules/style/module.nix index 6b7b07c..c60377b 100644 --- a/modules/style/module.nix +++ b/modules/style/module.nix @@ -4,21 +4,21 @@ in { imports = [ ./qt.nix - ./gtk.nix + # ./gtk.nix ./colors.nix ./fonts.nix ]; - home-manager.users.${username} = { - home.pointerCursor = { - # inherit the default values set in the options, - # since these are the once I need on all my systems. - inherit package name size; + # home-manager.users.${username} = { + # home.pointerCursor = { + # # inherit the default values set in the options, + # # since these are the once I need on all my systems. + # inherit package name size; - # make gtk follow the cursor choices - gtk.enable = true; + # # make gtk follow the cursor choices + # # gtk.enable = true; - # ditto - x11.enable = true; - }; - }; + # # ditto + # x11.enable = true; + # }; + # }; } diff --git a/modules/style/qt.nix b/modules/style/qt.nix index bbf9b1f..052238b 100644 --- a/modules/style/qt.nix +++ b/modules/style/qt.nix @@ -20,43 +20,43 @@ in { GTK_THEME = theme.name; }; - home-manager.users.${username} = { - # This is taken from jacekpoz, thanks a lot! - qt = { - enable = true; - style = { - inherit (cfg) name; - package = cfg.package.override { - flavour = [cfg.variant]; - accents = [cfg.accentColor]; - }; - }; - }; - home = { - packages = with pkgs; [ - qt5.qttools - qt6Packages.qtstyleplugin-kvantum - libsForQt5.qtstyleplugin-kvantum - libsForQt5.qt5ct - ]; + # home-manager.users.${username} = { + # # This is taken from jacekpoz, thanks a lot! + # qt = { + # enable = true; + # style = { + # inherit (cfg) name; + # package = cfg.package.override { + # flavour = [cfg.variant]; + # accents = [cfg.accentColor]; + # }; + # }; + # }; + # home = { + # packages = with pkgs; [ + # qt5.qttools + # qt6Packages.qtstyleplugin-kvantum + # libsForQt5.qtstyleplugin-kvantum + # libsForQt5.qt5ct + # ]; - sessionVariables = { - # Scaling factor for QT applications - QT_AUTO_SCREEN_SCALE_FACTOR = "1"; + # sessionVariables = { + # # Scaling factor for QT applications + # QT_AUTO_SCREEN_SCALE_FACTOR = "1"; - # Use wayland as the default backend. - QT_QPA_PLATFORM = "wayland"; + # # Use wayland as the default backend. + # QT_QPA_PLATFORM = "wayland"; - # Disable window decorations for qt applications. - QT_WAYLAND_DISABLE_WINDOWDECORATION = "1"; + # # Disable window decorations for qt applications. + # QT_WAYLAND_DISABLE_WINDOWDECORATION = "1"; - # Remain compatible with QT5 whenever possible. - DISABLE_QT_COMPAT = "0"; + # # Remain compatible with QT5 whenever possible. + # DISABLE_QT_COMPAT = "0"; - # Tell Calibre to use the dark theme. - CALIBRE_USE_DARK_PALETTE = "1"; - }; - }; - }; + # # Tell Calibre to use the dark theme. + # CALIBRE_USE_DARK_PALETTE = "1"; + # }; + # }; + # }; }; }