UN-HOME-MANAGER-MY-CONFIG

HM BE GONE AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
This commit is contained in:
Charlie Root 2024-11-04 12:47:16 +01:00
commit 050a360fbb
Signed by: faukah
SSH key fingerprint: SHA256:jpYIt4Vkz1NBTQcks/N9OPTfTFxE6KF2W/rV7hrfrIw
4 changed files with 47 additions and 47 deletions

View file

@ -1,6 +1,6 @@
_: {
imports = [
./home-manager.nix
# ./home-manager.nix
./system.nix
./xdg.nix
./git.nix

View file

@ -3,7 +3,7 @@ _: {
./foot.nix
./spicetify.nix
./steam.nix
./schizofox.nix
# ./schizofox.nix
./minecraft.nix
];
}

View file

@ -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;
# };
# };
}

View file

@ -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";
# };
# };
# };
};
}