home manager added
This commit is contained in:
parent
eec07d73b8
commit
5e107d30f2
1 changed files with 11 additions and 1 deletions
12
home.nix
12
home.nix
|
@ -1,4 +1,4 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, talhelper, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
# TODO please change the username & home direcotry to your own
|
# TODO please change the username & home direcotry to your own
|
||||||
|
@ -34,6 +34,10 @@
|
||||||
df = "df -h";
|
df = "df -h";
|
||||||
du = "du -h";
|
du = "du -h";
|
||||||
};
|
};
|
||||||
|
shellInit = ''
|
||||||
|
/etc/profiles/per-user/jahanson/bin/rtx hook-env | source
|
||||||
|
/etc/profiles/per-user/jahanson/bin/rtx activate fish | source
|
||||||
|
'';
|
||||||
functions = {
|
functions = {
|
||||||
fish_greeting = {
|
fish_greeting = {
|
||||||
description = "Set the fish greeting";
|
description = "Set the fish greeting";
|
||||||
|
@ -73,6 +77,11 @@
|
||||||
nmap # A utility for network discovery and security auditing
|
nmap # A utility for network discovery and security auditing
|
||||||
ipcalc # it is a calculator for the IPv4/v6 addresses
|
ipcalc # it is a calculator for the IPv4/v6 addresses
|
||||||
|
|
||||||
|
# kubernetes
|
||||||
|
k9s
|
||||||
|
kubectl
|
||||||
|
krew
|
||||||
|
|
||||||
# misc
|
# misc
|
||||||
cowsay
|
cowsay
|
||||||
file
|
file
|
||||||
|
@ -109,6 +118,7 @@
|
||||||
ethtool
|
ethtool
|
||||||
pciutils # lspci
|
pciutils # lspci
|
||||||
usbutils # lsusb
|
usbutils # lsusb
|
||||||
|
rtx # rtx package manager
|
||||||
];
|
];
|
||||||
|
|
||||||
# starship - an customizable prompt for any shell
|
# starship - an customizable prompt for any shell
|
||||||
|
|
Reference in a new issue