added sway for x230

This commit is contained in:
2024-02-28 11:34:23 +01:00
parent 374236d8b7
commit bd44bdcd29
3 changed files with 129 additions and 0 deletions

15
x230-wl.nix Normal file
View File

@@ -0,0 +1,15 @@
{ config, pkgs, lib, ... }:
{
programs.alacritty.settings.font.size = lib.mkForce 11;
home.packages = with pkgs; [
wlsunset
];
wayland.windowManager.sway.config = {
startup = [
{ command = "bash ~/scripts/sunset.sh"; }
];
};
}