My nixos configuration
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: use user-tempfile rule

+2 -3
+2 -3
packages/installer/xterm.nix
··· 1 1 {pkgs, ...}: let 2 2 inherit (pkgs) writeText; 3 3 in { 4 - systemd.tmpfiles.rules = let 4 + systemd.user.tmpfiles.rules = let 5 5 xresources = writeText "xresources" '' 6 6 XTerm.vt100.foreground: rgb:d3/d3/d3 7 7 XTerm.vt100.background: rgb:00/00/00 8 8 XTerm.vt100.faceName: FreeMono 9 9 XTerm.vt100.faceSize: 12 10 10 ''; 11 - home = "/home/nixos"; 12 11 in [ 13 - "L+ ${home}/.Xresources - - - - ${xresources}" 12 + "L+ %h/.Xresources - - - - ${xresources}" 14 13 ]; 15 14 }