mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-27 18:57:15 +08:00
21 lines
352 B
Nix
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;
|
|
};
|
|
}
|