From 482b4af6abc74d6844339d2a2e62fa299a415c9d Mon Sep 17 00:00:00 2001 From: Natasha Moongrave Date: Thu, 5 Feb 2026 16:16:27 +0100 Subject: added base of picom --- modules/home/i3wm/nord-blue/default.nix | 1 + modules/home/i3wm/nord-blue/i3.nix | 2 +- modules/home/i3wm/nord-blue/picom.nix | 5 +++++ modules/nixos/des/i3wm.nix | 20 +++++++++++++------- 4 files changed, 20 insertions(+), 8 deletions(-) create mode 100644 modules/home/i3wm/nord-blue/picom.nix (limited to 'modules') diff --git a/modules/home/i3wm/nord-blue/default.nix b/modules/home/i3wm/nord-blue/default.nix index 2ef727a..2e11b02 100644 --- a/modules/home/i3wm/nord-blue/default.nix +++ b/modules/home/i3wm/nord-blue/default.nix @@ -4,5 +4,6 @@ imports = [ ./alacritty.nix ./i3.nix + ./picom.nix ]; } \ No newline at end of file diff --git a/modules/home/i3wm/nord-blue/i3.nix b/modules/home/i3wm/nord-blue/i3.nix index a5fb82d..14810bf 100644 --- a/modules/home/i3wm/nord-blue/i3.nix +++ b/modules/home/i3wm/nord-blue/i3.nix @@ -16,7 +16,7 @@ in window = { titlebar = false; - border = 10; + border = 3; }; startup = [ diff --git a/modules/home/i3wm/nord-blue/picom.nix b/modules/home/i3wm/nord-blue/picom.nix new file mode 100644 index 0000000..68d3690 --- /dev/null +++ b/modules/home/i3wm/nord-blue/picom.nix @@ -0,0 +1,5 @@ +{ pkgs, config, lib, ... }: + +{ + +} \ No newline at end of file diff --git a/modules/nixos/des/i3wm.nix b/modules/nixos/des/i3wm.nix index f26b54a..0138355 100644 --- a/modules/nixos/des/i3wm.nix +++ b/modules/nixos/des/i3wm.nix @@ -1,14 +1,20 @@ { config, lib, pkgs, ... }: { - services.xserver = { - enable = true; - windowManager.i3.enable = true; + services = { + xserver = { + enable = true; + windowManager.i3.enable = true; - # Czech QWERTZ layout (Czech "CZ" layout) - xkb = { - layout = "cz"; - options = "eurosign:e,caps:escape"; + # Czech QWERTZ layout (Czech "CZ" layout) + xkb = { + layout = "cz"; + options = "eurosign:e,caps:escape"; + }; }; + + picom = { + enable = true + } }; } \ No newline at end of file -- cgit v1.2.3