mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-24 06:19:11 +00:00
users/plover: init home-manager profile
This commit is contained in:
parent
025d96dbbc
commit
a3d3bb0164
29
users/home-manager/plover/default.nix
Normal file
29
users/home-manager/plover/default.nix
Normal 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";
|
||||||
|
}
|
@ -8,14 +8,5 @@
|
|||||||
useDefaultShell = true;
|
useDefaultShell = true;
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "The go-to user for server systems.";
|
description = "The go-to user for server systems.";
|
||||||
|
|
||||||
packages = with pkgs; [
|
|
||||||
wireshark-cli
|
|
||||||
bind.dnsutils
|
|
||||||
nettools
|
|
||||||
bat
|
|
||||||
fd
|
|
||||||
jq
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user