Compare commits
3
Commits
b9aeb8bbd5
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
761ef128ef | ||
|
|
299709f0eb | ||
|
|
f9a2c476cb |
@@ -36,6 +36,7 @@
|
|||||||
swappy
|
swappy
|
||||||
libreoffice
|
libreoffice
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
|
megasync
|
||||||
pavucontrol
|
pavucontrol
|
||||||
blueman
|
blueman
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
font-family = "JetBrainsMono Nerd Font";
|
font-family = "JetBrainsMono Nerd Font";
|
||||||
font-size = 11;
|
font-size = 11;
|
||||||
|
|
||||||
theme = "catppuccin-mocha";
|
theme = "Catppuccin Mocha";
|
||||||
|
|
||||||
window-decoration = false;
|
window-decoration = false;
|
||||||
|
|
||||||
|
|||||||
@@ -683,3 +683,8 @@ window-rule {
|
|||||||
|
|
||||||
open-floating true
|
open-floating true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
window-rule {
|
||||||
|
match app-id="zen"
|
||||||
|
open-on-workspace "2"
|
||||||
|
}
|
||||||
|
|||||||
@@ -60,7 +60,7 @@ in
|
|||||||
dock = {
|
dock = {
|
||||||
enabled = true;
|
enabled = true;
|
||||||
# Desktop entry IDs (filename without .desktop)
|
# Desktop entry IDs (filename without .desktop)
|
||||||
pinned = [ "zen" "codium" "com.mitchellh.ghostty" "thunar" "claude" ];
|
pinned = [ "zen" "codium" "ghostty" "thunar" "claude-desktop" ];
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
smart_auto_hide = true;
|
smart_auto_hide = true;
|
||||||
icon_size = 20;
|
icon_size = 20;
|
||||||
|
|||||||
@@ -105,9 +105,39 @@
|
|||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
|
# Run prebuilt/foreign dynamically-linked Linux binaries (e.g. games)
|
||||||
|
# that expect a standard FHS-style dynamic linker.
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
|
programs.nix-ld.libraries = with pkgs; [
|
||||||
|
stdenv.cc.cc.lib
|
||||||
|
zlib
|
||||||
|
openssl
|
||||||
|
curl
|
||||||
|
libGL
|
||||||
|
libglvnd
|
||||||
|
glib
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
alsa-lib
|
||||||
|
|
||||||
|
# SDL2 windowing backends (Wayland + XWayland fallback) — needed for
|
||||||
|
# prebuilt games (e.g. Ren'Py) to open a window at all.
|
||||||
|
wayland
|
||||||
|
libxkbcommon
|
||||||
|
libdecor
|
||||||
|
xorg.libX11
|
||||||
|
xorg.libXext
|
||||||
|
xorg.libXcursor
|
||||||
|
xorg.libXi
|
||||||
|
xorg.libXfixes
|
||||||
|
xorg.libXrandr
|
||||||
|
xorg.libXScrnSaver
|
||||||
|
];
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
claude-code
|
claude-code
|
||||||
git
|
git
|
||||||
|
chromium
|
||||||
];
|
];
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
|
|||||||
Reference in New Issue
Block a user