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