tmux, some refactoring

This commit is contained in:
Till 2024-01-13 01:14:24 +01:00
parent d994ac0650
commit ba0a7c40fa
9 changed files with 90 additions and 8 deletions

14
system/ishi.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
users.users.ishi = {
isNormalUser = true;
uid = 969;
group = "users";
description = "Ishi";
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
}