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

10
tower.nix Normal file
View File

@@ -0,0 +1,10 @@
{ config, pkgs, lib, ... }:
{
home.packages = with pkgs; [
darktable
];
home.file.".config/sway/device-conf".text = ''
output * scale 1.5
'';
}