nixos-config/configurations/home/srid@sensuous.nix
2025-09-09 18:13:27 -04:00

21 lines
352 B
Nix

{ flake, ... }:
let
inherit (flake) inputs;
inherit (inputs) self;
in
{
imports = [
self.homeModules.default
self.homeModules.linux-only
(self + /modules/home/all/vira.nix)
];
home.username = "srid";
services.gotty = {
enable = true;
port = 9000;
command = "tmux new-session -A -s gotty";
write = true;
};
}