add qt6ct
This commit is contained in:
parent
3e488de9af
commit
dcb228a362
17
flake.lock
17
flake.lock
|
@ -229,6 +229,22 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"qt6ct": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1670384565,
|
||||||
|
"narHash": "sha256-9HktCvTs3UdeLHCmGW2ZG7OIdinZCcaf4lHSjmc+yMY=",
|
||||||
|
"owner": "lelgenio",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "9661d5a8ca7e0a5eab3090f0f597f595b8e120b9",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "lelgenio",
|
||||||
|
"ref": "qt6ct-0.7",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"ranger-icons": {
|
"ranger-icons": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -273,6 +289,7 @@
|
||||||
"nixpkgs": "nixpkgs_2",
|
"nixpkgs": "nixpkgs_2",
|
||||||
"nixpkgs-unstable": "nixpkgs-unstable",
|
"nixpkgs-unstable": "nixpkgs-unstable",
|
||||||
"nur": "nur",
|
"nur": "nur",
|
||||||
|
"qt6ct": "qt6ct",
|
||||||
"ranger-icons": "ranger-icons",
|
"ranger-icons": "ranger-icons",
|
||||||
"ranger-sixel": "ranger-sixel",
|
"ranger-sixel": "ranger-sixel",
|
||||||
"sea-orm-cli": "sea-orm-cli",
|
"sea-orm-cli": "sea-orm-cli",
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
sea-orm-cli.url = "github:lucperkins/nixpkgs/lperkins/sea-orm-cli";
|
sea-orm-cli.url = "github:lucperkins/nixpkgs/lperkins/sea-orm-cli";
|
||||||
webcord.url = "github:huantianad/nixpkgs/webcord";
|
webcord.url = "github:huantianad/nixpkgs/webcord";
|
||||||
|
qt6ct.url = "github:lelgenio/nixpkgs/qt6ct-0.7";
|
||||||
|
|
||||||
nil-lsp.url = "github:oxalica/nil";
|
nil-lsp.url = "github:oxalica/nil";
|
||||||
nil-lsp.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
nil-lsp.inputs.nixpkgs.follows = "nixpkgs-unstable";
|
||||||
|
|
|
@ -15,6 +15,8 @@
|
||||||
inputs.sea-orm-cli.legacyPackages.${prev.system}.sea-orm-cli;
|
inputs.sea-orm-cli.legacyPackages.${prev.system}.sea-orm-cli;
|
||||||
webcord =
|
webcord =
|
||||||
inputs.webcord.legacyPackages.${prev.system}.webcord;
|
inputs.webcord.legacyPackages.${prev.system}.webcord;
|
||||||
|
qt6ct =
|
||||||
|
inputs.qt6ct.legacyPackages.${prev.system}.qt6Packages.qt6ct;
|
||||||
nil-lsp = inputs.nil-lsp.packages.${prev.system}.nil;
|
nil-lsp = inputs.nil-lsp.packages.${prev.system}.nil;
|
||||||
alacritty = (prev.unstable.alacritty.overrideAttrs (old-alacritty: rec {
|
alacritty = (prev.unstable.alacritty.overrideAttrs (old-alacritty: rec {
|
||||||
src = inputs.alacritty-sixel;
|
src = inputs.alacritty-sixel;
|
||||||
|
|
|
@ -55,11 +55,13 @@ with pkgs.uservars; {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = { QT_QPA_PLATFORMTHEME = "gtk3"; };
|
home.sessionVariables = { QT_QPA_PLATFORMTHEME = "qt6ct"; };
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
libsForQt5.qt5ct
|
libsForQt5.qt5ct
|
||||||
libsForQt5.qtstyleplugin-kvantum
|
libsForQt5.qtstyleplugin-kvantum
|
||||||
|
|
||||||
|
qt6ct
|
||||||
|
|
||||||
pkgs.capitaine-cursors
|
pkgs.capitaine-cursors
|
||||||
pkgs.orchis_theme_compact
|
pkgs.orchis_theme_compact
|
||||||
pkgs.papirus_red
|
pkgs.papirus_red
|
||||||
|
|
|
@ -13,7 +13,7 @@ in {
|
||||||
modules-right = [
|
modules-right = [
|
||||||
"sway/language"
|
"sway/language"
|
||||||
"mpd"
|
"mpd"
|
||||||
# "tray"
|
"tray"
|
||||||
"custom/caffeine"
|
"custom/caffeine"
|
||||||
"pulseaudio"
|
"pulseaudio"
|
||||||
"network"
|
"network"
|
||||||
|
|
Loading…
Reference in a new issue