This commit is contained in:
2025-11-24 20:36:14 +09:00
parent b69ae143c2
commit 4b9a2d8535
3 changed files with 18 additions and 5 deletions

View File

@@ -82,6 +82,7 @@
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
# wget
git
unzip
fish
wlr-randr
xwayland-satellite
@@ -91,6 +92,10 @@
jetbrains-mono
kime
nautilus
adw-gtk3
kdePackages.qt6ct
python313
python313Packages.conda
];
environment.pathsToLink = [

View File

@@ -1,6 +1,7 @@
{...}:
{
home.file."alacritty.alacritty.toml" = {
home.file.alacritty = {
target = ".config/alacritty/alacritty.toml";
text = ''
[general]
import = ["dank-theme.toml"]
@@ -13,5 +14,5 @@
size = 11
offset = { x = 1, y = 2}
'';
}
};
}

View File

@@ -119,8 +119,10 @@ environment {
SDL_IM_MODULE "kime"
GLFW_IM_MODULE "ibus"
QT_QPA_PLATFORMTHEME "gtk3"
QT_QPA_PLATFORMTHEME_QT6 "gtk3"
//QT_QPA_PLATFORMTHEME "gtk3"
//QT_QPA_PLATFORMTHEME_QT6 "gtk3"
QT_QPA_PLATFORMTHEME "qt6ct"
QT_QPA_PLATFORMTHEME_QT6 "qt6ct"
DISPLAY ":0"
}
@@ -152,7 +154,7 @@ switch-events {
layout {
// Set gaps around windows in logical pixels.
gaps 10
background-color "transparent"
always-center-single-column
// When to center a column when changing focus, options are:
@@ -306,6 +308,11 @@ layout {
}
}
layer-rule {
match namespace="^quickshell$"
place-within-backdrop true
}
// Add lines like this to spawn processes at startup.
// Note that running niri as a session supports xdg-desktop-autostart,
// which may be more convenient to use.