Introduce a variable for sway includes and disable relatime on the zfs legacy mounts.

This commit is contained in:
Tom Alexander
2025-01-12 15:32:24 -05:00
parent a817464b38
commit 5146a114eb
4 changed files with 177 additions and 130 deletions

View File

@@ -5,6 +5,14 @@
...
}:
let
exec_kanshi = pkgs.writeTextFile {
name = "exec_kanshi.conf";
text = ''
exec kanshi
'';
};
in
{
imports = [ ];
@@ -12,6 +20,10 @@
kanshi
];
me.swayIncludes = [
exec_kanshi
];
home-manager.users.talexander =
{ pkgs, ... }:
{