initial commit

This commit is contained in:
2024-02-04 17:06:53 +01:00
commit 1935881957
17 changed files with 1193 additions and 0 deletions

12
x230.nix Normal file
View File

@@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
wlsunset
];
wayland.windowManager.sway.config = {
startup = [
{ command = "bash ~/scripts/sunset.sh"; }
];
};
}