Files
home-manager/tower.nix
2024-02-04 17:06:53 +01:00

11 lines
161 B
Nix

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