users/plover: init home-manager profile

This commit is contained in:
Gabriel Arazas 2022-11-26 14:12:30 +08:00
parent 025d96dbbc
commit a3d3bb0164
2 changed files with 29 additions and 9 deletions

View File

@ -0,0 +1,29 @@
# It's a user that often dwells in the terminal. Mostly used in servers.
{ config, lib, pkgs, ... }:
{
home.packages = with pkgs; [
wireshark-cli
bind.dnsutils
nettools
bat
fd
jq
];
profiles = {
dev = {
enable = true;
shell.enable = true;
};
editors.neovim.enable = true;
};
systemd.user.sessionVariables = {
MANPAGER = "nvim +Man!";
EDITOR = "nvim";
};
home.stateVersion = "22.11";
}

View File

@ -8,14 +8,5 @@
useDefaultShell = true;
isNormalUser = true;
description = "The go-to user for server systems.";
packages = with pkgs; [
wireshark-cli
bind.dnsutils
nettools
bat
fd
jq
];
};
}