mirror of
https://github.com/artagaz/nix-config.git
synced 2026-06-23 02:05:45 +07:00
latest niri 26.04, blur, cinnamon, plasma.
This commit is contained in:
+1
-1
@@ -12,7 +12,7 @@
|
||||
backupCommand = "rm";
|
||||
|
||||
users.${self.user} = {
|
||||
home.stateVersion = "25.11";
|
||||
home.stateVersion = "26.05";
|
||||
programs.home-manager.enable = true;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -17,14 +17,26 @@
|
||||
self.nixosModules.fastfetch
|
||||
self.nixosModules.home-manager
|
||||
|
||||
self.nixosModules.cinnamon
|
||||
# self.nixosModules.niri
|
||||
# self.nixosModules.cinnamon
|
||||
self.nixosModules.niri
|
||||
# self.nixosModules.plasma
|
||||
];
|
||||
|
||||
# Use the systemd-boot EFI boot loader.
|
||||
boot.loader.systemd-boot.enable = true;
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
boot.loader.timeout = 1;
|
||||
|
||||
# Use the GRUB EFI boot loader.
|
||||
# boot.loader = {
|
||||
# grub = {
|
||||
# enable = true;
|
||||
# device = "nodev"; # "nodev" is used for UEFI
|
||||
# efiSupport = true;
|
||||
# useOSProber = true;
|
||||
# };
|
||||
# efi.canTouchEfiVariables = true;
|
||||
# };
|
||||
|
||||
# Enable flakes.
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
|
||||
+11
-10
@@ -1,16 +1,16 @@
|
||||
{ self, config, lib, ... }:
|
||||
{ self, ... }:
|
||||
{
|
||||
options = {
|
||||
pywal = {
|
||||
enable = lib.mkOption {
|
||||
default = false;
|
||||
type = lib.types.bool;
|
||||
flake.nixosModules.kitty = { config, lib, ... }: {
|
||||
options = {
|
||||
kitty.pywal = {
|
||||
enable = lib.mkOption {
|
||||
default = false;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = {
|
||||
flake.nixosModules.kitty = {
|
||||
config = {
|
||||
home-manager.users.${self.user}.imports = [
|
||||
{
|
||||
programs.kitty = {
|
||||
@@ -22,8 +22,9 @@
|
||||
settings = {
|
||||
confirm_os_window_close = 0;
|
||||
# background_opacity = 0.85;
|
||||
remember_window_size = "no";
|
||||
};
|
||||
extraConfig = lib.mkIf config.pywal.enable ''
|
||||
extraConfig = lib.mkIf config.kitty.pywal.enable ''
|
||||
include ~/.cache/wal/colors-kitty.conf
|
||||
'';
|
||||
themeFile = "gruvbox-dark";
|
||||
|
||||
@@ -23,42 +23,47 @@
|
||||
];
|
||||
|
||||
xdg.configFile = {
|
||||
"matugen/config.toml".text = /* toml */ ''
|
||||
[config]
|
||||
[templates.gtk3]
|
||||
input_path = '${builtins.toString ./templates/gtk-colors.css}'
|
||||
output_path = '~/.config/gtk-3.0/colors.css'
|
||||
"matugen/config.toml" = {
|
||||
text = /* toml */ ''
|
||||
[config]
|
||||
[templates.gtk3]
|
||||
input_path = '${builtins.toString ./templates/gtk-colors.css}'
|
||||
output_path = '~/.config/gtk-3.0/colors.css'
|
||||
|
||||
[templates.gtk4]
|
||||
input_path = '${builtins.toString ./templates/gtk-colors.css}'
|
||||
output_path = '~/.config/gtk-4.0/colors.css'
|
||||
[templates.gtk4]
|
||||
input_path = '${builtins.toString ./templates/gtk-colors.css}'
|
||||
output_path = '~/.config/gtk-4.0/colors.css'
|
||||
|
||||
[templates.color-scheme]
|
||||
input_path = '${builtins.toString ./templates/Matugen.colors}'
|
||||
output_path = '~/.local/share/color-schemes/Matugen.colors'
|
||||
[templates.color-scheme]
|
||||
input_path = '${builtins.toString ./templates/Matugen.colors}'
|
||||
output_path = '~/.local/share/color-schemes/Matugen.colors'
|
||||
|
||||
[templates.qt5ct]
|
||||
input_path = '${builtins.toString ./templates/qtct-colors.conf}'
|
||||
output_path = '~/.config/qt5ct/colors/matugen.conf'
|
||||
[templates.qt5ct]
|
||||
input_path = '${builtins.toString ./templates/qtct-colors.conf}'
|
||||
output_path = '~/.config/qt5ct/colors/matugen.conf'
|
||||
|
||||
[templates.qt6ct]
|
||||
input_path = '${builtins.toString ./templates/qtct-colors.conf}'
|
||||
output_path = '~/.config/qt6ct/colors/matugen.conf'
|
||||
[templates.qt6ct]
|
||||
input_path = '${builtins.toString ./templates/qtct-colors.conf}'
|
||||
output_path = '~/.config/qt6ct/colors/matugen.conf'
|
||||
|
||||
[templates.niri]
|
||||
input_path = '${builtins.toString ./templates/niri-colors.kdl}'
|
||||
output_path = '~/.config/niri/colors.kdl'
|
||||
# post_hook = 'niri msg action load-config-file'
|
||||
[templates.niri]
|
||||
input_path = '${builtins.toString ./templates/niri-colors.kdl}'
|
||||
output_path = '~/.config/niri/colors.kdl'
|
||||
# post_hook = 'niri msg action load-config-file'
|
||||
|
||||
[templates.dunst]
|
||||
input_path = '${builtins.toString ./templates/dunstrc-colors}'
|
||||
output_path = '~/.config/dunst/dunstrc.d/00-style.conf'
|
||||
post_hook = 'dunstctl reload'
|
||||
'';
|
||||
"kdeglobals".text = ''
|
||||
[UiSettings]
|
||||
ColorScheme=Matugen
|
||||
'';
|
||||
[templates.dunst]
|
||||
input_path = '${builtins.toString ./templates/dunstrc-colors}'
|
||||
output_path = '~/.config/dunst/dunstrc.d/00-style.conf'
|
||||
post_hook = 'dunstctl reload'
|
||||
'';
|
||||
};
|
||||
|
||||
"kdeglobals" = {
|
||||
text = ''
|
||||
[UiSettings]
|
||||
ColorScheme=Matugen
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
qt = {
|
||||
|
||||
@@ -4,12 +4,27 @@
|
||||
dconf.settings = {
|
||||
"org/cinnamon" = {
|
||||
alttab-switcher-delay = 100;
|
||||
enabled-applets = [ "panel1:left:0:menu@cinnamon.org:0" "panel1:left:1:separator@cinnamon.org:1" "panel1:left:2:grouped-window-list@cinnamon.org:2" "panel1:right:0:systray@cinnamon.org:3" "panel1:right:1:xapp-status@cinnamon.org:4" "panel1:right:2:notifications@cinnamon.org:5" "panel1:right:3:printers@cinnamon.org:6" "panel1:right:4:removable-drives@cinnamon.org:7" "panel1:right:5:keyboard@cinnamon.org:8" "panel1:right:6:favorites@cinnamon.org:9" "panel1:right:7:network@cinnamon.org:10" "panel1:right:8:sound@cinnamon.org:11" "panel1:right:9:power@cinnamon.org:12" "panel1:right:10:calendar@cinnamon.org:13" "panel1:right:11:cornerbar@cinnamon.org:14" ];
|
||||
next-applet-id = 15;
|
||||
desklet-snap-interval = 25;
|
||||
enabled-applets = [ "panel1:left:0:menu@cinnamon.org:0" "panel1:left:1:separator@cinnamon.org:1" "panel1:left:2:grouped-window-list@cinnamon.org:2" "panel1:right:2:systray@cinnamon.org:3" "panel1:right:3:xapp-status@cinnamon.org:4" "panel1:right:4:notifications@cinnamon.org:5" "panel1:right:5:printers@cinnamon.org:6" "panel1:right:6:removable-drives@cinnamon.org:7" "panel1:right:7:keyboard@cinnamon.org:8" "panel1:right:8:favorites@cinnamon.org:9" "panel1:right:9:network@cinnamon.org:10" "panel1:right:10:sound@cinnamon.org:11" "panel1:right:11:power@cinnamon.org:12" "panel1:right:12:calendar@cinnamon.org:13" "panel1:right:13:cornerbar@cinnamon.org:14" "panel1:right:1:weather@mockturtl:15" "panel1:center:0:workspace-switcher@cinnamon.org:16" ];
|
||||
enabled-desklets = [];
|
||||
next-applet-id = 17;
|
||||
panel-edit-mode = false;
|
||||
panel-zone-symbolic-icon-sizes = "[{\"panelId\": 1, \"left\": 28, \"center\": 28, \"right\": 16}]";
|
||||
panels-height = [ "1:48" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/a11y/applications" = {
|
||||
screen-reader-enabled = false;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/a11y/mouse" = {
|
||||
dwell-click-enabled = false;
|
||||
dwell-threshold = 10;
|
||||
dwell-time = 1.2;
|
||||
secondary-click-enabled = false;
|
||||
secondary-click-time = 1.2;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/applications/calculator" = {
|
||||
exec = "gnome-calculator";
|
||||
};
|
||||
@@ -148,17 +163,20 @@
|
||||
};
|
||||
|
||||
"org/cinnamon/gestures" = {
|
||||
enabled = true;
|
||||
pinch-percent-threshold = mkUint32 40;
|
||||
swipe-down-2 = "PUSH_TILE_DOWN::end";
|
||||
swipe-down-3 = "TOGGLE_OVERVIEW::end";
|
||||
swipe-down-3 = "TOGGLE_OVERVIEW::::start";
|
||||
swipe-down-4 = "VOLUME_DOWN::end";
|
||||
swipe-left-2 = "PUSH_TILE_LEFT::end";
|
||||
swipe-left-3 = "WORKSPACE_NEXT::end";
|
||||
swipe-left-3 = "WORKSPACE_NEXT::::start";
|
||||
swipe-left-4 = "WINDOW_WORKSPACE_PREVIOUS::end";
|
||||
swipe-percent-threshold = mkUint32 60;
|
||||
swipe-right-2 = "PUSH_TILE_RIGHT::end";
|
||||
swipe-right-3 = "WORKSPACE_PREVIOUS::end";
|
||||
swipe-right-3 = "WORKSPACE_PREVIOUS::::start";
|
||||
swipe-right-4 = "WINDOW_WORKSPACE_NEXT::end";
|
||||
swipe-up-2 = "PUSH_TILE_UP::end";
|
||||
swipe-up-3 = "TOGGLE_EXPO::end";
|
||||
swipe-up-3 = "TOGGLE_EXPO::::start";
|
||||
swipe-up-4 = "VOLUME_UP::end";
|
||||
tap-3 = "MEDIA_PLAY_PAUSE::end";
|
||||
};
|
||||
|
||||
@@ -0,0 +1,202 @@
|
||||
# Generated via dconf2nix: https://github.com/gvolpe/dconf2nix
|
||||
{ lib, ... }:
|
||||
|
||||
with lib.hm.gvariant;
|
||||
|
||||
{
|
||||
dconf.settings = {
|
||||
"org/cinnamon" = {
|
||||
alttab-switcher-delay = 100;
|
||||
desklet-snap-interval = 25;
|
||||
enabled-applets = [ "panel1:left:0:menu@cinnamon.org:0" "panel1:left:1:separator@cinnamon.org:1" "panel1:left:2:grouped-window-list@cinnamon.org:2" "panel1:right:2:systray@cinnamon.org:3" "panel1:right:3:xapp-status@cinnamon.org:4" "panel1:right:4:notifications@cinnamon.org:5" "panel1:right:5:printers@cinnamon.org:6" "panel1:right:6:removable-drives@cinnamon.org:7" "panel1:right:7:keyboard@cinnamon.org:8" "panel1:right:8:favorites@cinnamon.org:9" "panel1:right:9:network@cinnamon.org:10" "panel1:right:10:sound@cinnamon.org:11" "panel1:right:11:power@cinnamon.org:12" "panel1:right:12:calendar@cinnamon.org:13" "panel1:right:13:cornerbar@cinnamon.org:14" "panel1:right:1:weather@mockturtl:15" "panel1:center:0:workspace-switcher@cinnamon.org:16" ];
|
||||
enabled-desklets = [];
|
||||
next-applet-id = 17;
|
||||
panel-edit-mode = false;
|
||||
panel-zone-symbolic-icon-sizes = "[{\"panelId\": 1, \"left\": 28, \"center\": 28, \"right\": 16}]";
|
||||
panels-height = [ "1:48" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/a11y/applications" = {
|
||||
screen-reader-enabled = false;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/a11y/mouse" = {
|
||||
dwell-click-enabled = false;
|
||||
dwell-threshold = 10;
|
||||
dwell-time = 1.2;
|
||||
secondary-click-enabled = false;
|
||||
secondary-click-time = 1.2;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/applications/calculator" = {
|
||||
exec = "gnome-calculator";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/applications/terminal" = {
|
||||
exec = "kitty";
|
||||
exec-arg = "--";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/background" = {
|
||||
picture-uri = "file:///home/matthew/Pictures/clem_calm.jpg";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/background/slideshow" = {
|
||||
delay = 15;
|
||||
image-source = "directory:///home/matthew/Pictures";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/input-sources" = {
|
||||
sources = [ (mkTuple [ "xkb" "us" ]) (mkTuple [ "xkb" "ru" ]) ];
|
||||
xkb-options = [ "terminate:ctrl_alt_bksp" "grp:caps_toggle" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/interface" = {
|
||||
cursor-blink-time = 1200;
|
||||
cursor-size = 24;
|
||||
cursor-theme = "Bibata-Modern-Classic";
|
||||
gtk-theme = "Mint-Y-Dark";
|
||||
icon-theme = "Mint-Y";
|
||||
text-scaling-factor = 1.2;
|
||||
toolkit-accessibility = false;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings" = {
|
||||
custom-list = [ "custom0" "custom1" "custom2" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings/custom-keybindings/custom0" = {
|
||||
binding = [ "<Shift><Super>o" ];
|
||||
command = "obsidian";
|
||||
name = "Obsidian";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings/custom-keybindings/custom1" = {
|
||||
binding = [ "<Shift><Super>t" ];
|
||||
command = "Telegram";
|
||||
name = "Telegram";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings/custom-keybindings/custom2" = {
|
||||
binding = [ "<Shift><Super>g" ];
|
||||
command = "godot-mono";
|
||||
name = "Godot";
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings/media-keys" = {
|
||||
terminal = [ "<Primary><Alt>t" "<Shift><Super>c" ];
|
||||
www = [ "XF86WWW" "<Shift><Super>f" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/keybindings/wm" = {
|
||||
close = [ "<Alt>F4" "<Super>c" ];
|
||||
minimize = [ "<Super>u" ];
|
||||
move-to-center = [ "<Primary><Super>c" ];
|
||||
move-to-monitor-down = [ "<Super><Shift>Down" "<Alt><Super>j" ];
|
||||
move-to-monitor-left = [ "<Super><Shift>Left" "<Alt><Super>h" ];
|
||||
move-to-monitor-right = [ "<Super><Shift>Right" "<Alt><Super>l" ];
|
||||
move-to-monitor-up = [ "<Super><Shift>Up" "<Alt><Super>k" ];
|
||||
move-to-workspace-1 = [ "<Shift><Super>exclam" ];
|
||||
move-to-workspace-10 = [ "<Shift><Super>parenright" ];
|
||||
move-to-workspace-2 = [ "<Shift><Super>at" ];
|
||||
move-to-workspace-3 = [ "<Shift><Super>numbersign" ];
|
||||
move-to-workspace-4 = [ "<Shift><Super>dollar" ];
|
||||
move-to-workspace-5 = [ "<Shift><Super>percent" ];
|
||||
move-to-workspace-6 = [ "<Shift><Super>asciicircum" ];
|
||||
move-to-workspace-7 = [ "<Shift><Super>ampersand" ];
|
||||
move-to-workspace-8 = [ "<Shift><Super>asterisk" ];
|
||||
move-to-workspace-9 = [ "<Shift><Super>parenleft" ];
|
||||
move-to-workspace-down = [ "<Control><Shift><Alt>Down" "<Primary><Shift><Super>j" ];
|
||||
move-to-workspace-left = [ "<Control><Shift><Alt>Left" "<Primary><Shift><Super>h" ];
|
||||
move-to-workspace-right = [ "<Control><Shift><Alt>Right" "<Primary><Shift><Super>l" ];
|
||||
move-to-workspace-up = [ "<Control><Shift><Alt>Up" "<Primary><Shift><Super>k" ];
|
||||
push-tile-down = [ "<Super>Down" "<Shift><Super>j" ];
|
||||
push-tile-left = [ "<Super>Left" "<Shift><Super>h" ];
|
||||
push-tile-right = [ "<Super>Right" "<Shift><Super>l" ];
|
||||
push-tile-up = [ "<Super>Up" "<Shift><Super>k" ];
|
||||
switch-input-source = [ "ISO_Next_Group" "XF86Keyboard" ];
|
||||
switch-to-workspace-1 = [ "<Super>1" ];
|
||||
switch-to-workspace-10 = [ "<Super>0" ];
|
||||
switch-to-workspace-2 = [ "<Super>2" ];
|
||||
switch-to-workspace-3 = [ "<Super>3" ];
|
||||
switch-to-workspace-4 = [ "<Super>4" ];
|
||||
switch-to-workspace-5 = [ "<Super>5" ];
|
||||
switch-to-workspace-6 = [ "<Super>6" ];
|
||||
switch-to-workspace-7 = [ "<Super>7" ];
|
||||
switch-to-workspace-8 = [ "<Super>8" ];
|
||||
switch-to-workspace-9 = [ "<Super>9" ];
|
||||
switch-to-workspace-down = [ "<Control><Alt>Down" "<Super>w" ];
|
||||
switch-to-workspace-left = [ "<Primary><Super>Left" "<Primary><Super>h" ];
|
||||
switch-to-workspace-right = [ "<Primary><Super>Right" "<Primary><Super>l" ];
|
||||
toggle-fullscreen = [ "<Super>f" "F11" ];
|
||||
toggle-maximized = [ "<Alt>F10" "<Super>m" ];
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/media-handling" = {
|
||||
autorun-never = false;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/peripherals/keyboard" = {
|
||||
delay = mkUint32 228;
|
||||
repeat-interval = mkUint32 30;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/peripherals/mouse" = {
|
||||
accel-profile = "flat";
|
||||
double-click = 400;
|
||||
drag-threshold = 8;
|
||||
speed = 0.0;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/peripherals/touchpad" = {
|
||||
speed = 0.0;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/screensaver" = {
|
||||
layout-group = 0;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/sound" = {
|
||||
event-sounds = false;
|
||||
};
|
||||
|
||||
"org/cinnamon/desktop/wm/preferences" = {
|
||||
min-window-opacity = 30;
|
||||
mouse-button-modifier = "<Super>";
|
||||
};
|
||||
|
||||
"org/cinnamon/gestures" = {
|
||||
enabled = true;
|
||||
pinch-percent-threshold = mkUint32 40;
|
||||
swipe-down-2 = "PUSH_TILE_DOWN::end";
|
||||
swipe-down-3 = "TOGGLE_OVERVIEW::::start";
|
||||
swipe-down-4 = "VOLUME_DOWN::end";
|
||||
swipe-left-2 = "PUSH_TILE_LEFT::end";
|
||||
swipe-left-3 = "WORKSPACE_NEXT::::start";
|
||||
swipe-left-4 = "WINDOW_WORKSPACE_PREVIOUS::end";
|
||||
swipe-percent-threshold = mkUint32 60;
|
||||
swipe-right-2 = "PUSH_TILE_RIGHT::end";
|
||||
swipe-right-3 = "WORKSPACE_PREVIOUS::::start";
|
||||
swipe-right-4 = "WINDOW_WORKSPACE_NEXT::end";
|
||||
swipe-up-2 = "PUSH_TILE_UP::end";
|
||||
swipe-up-3 = "TOGGLE_EXPO::::start";
|
||||
swipe-up-4 = "VOLUME_UP::end";
|
||||
tap-3 = "MEDIA_PLAY_PAUSE::end";
|
||||
};
|
||||
|
||||
"org/cinnamon/muffin" = {
|
||||
draggable-border-width = 10;
|
||||
placement-mode = "center";
|
||||
tile-maximize = true;
|
||||
};
|
||||
|
||||
"org/cinnamon/settings-daemon/plugins/color" = {
|
||||
night-light-last-coordinates = mkTuple [ 43.25 76.95 ];
|
||||
};
|
||||
|
||||
"org/cinnamon/theme" = {
|
||||
name = "Mint-Y-Dark";
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
@@ -118,7 +118,7 @@ output "eDP-1" {
|
||||
// https://yalter.github.io/niri/Configuration:-Layout
|
||||
layout {
|
||||
// Set gaps around windows in logical pixels.
|
||||
gaps 8
|
||||
gaps 4
|
||||
|
||||
always-center-single-column
|
||||
|
||||
@@ -364,6 +364,10 @@ window-rule {
|
||||
window-rule {
|
||||
// geometry-corner-radius 0
|
||||
clip-to-geometry true
|
||||
opacity 0.9
|
||||
background-effect {
|
||||
blur true
|
||||
}
|
||||
}
|
||||
|
||||
binds {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ self, ... }:
|
||||
{ self, inputs, ... }:
|
||||
{
|
||||
flake.nixosModules.niri = { pkgs, lib, config, ... }:
|
||||
{
|
||||
@@ -6,10 +6,15 @@
|
||||
self.nixosModules.matugen
|
||||
self.nixosModules.waybar
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [ inputs.niri-flake.overlays.niri ];
|
||||
|
||||
kitty.pywal.enable = true;
|
||||
|
||||
programs.niri.enable = true;
|
||||
programs.niri = {
|
||||
enable = true;
|
||||
package = pkgs.niri-unstable;
|
||||
};
|
||||
|
||||
services.displayManager.ly =
|
||||
let
|
||||
|
||||
@@ -3,6 +3,11 @@
|
||||
services.desktopManager.plasma6.enable = true;
|
||||
services.displayManager.plasma-login-manager.enable = true;
|
||||
services.power-profiles-daemon.enable = false;
|
||||
services.xserver.enable = false;
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
klassy
|
||||
];
|
||||
|
||||
nixpkgs.overlays = [
|
||||
(final: prev: {
|
||||
|
||||
Reference in New Issue
Block a user