Add some missing user programs
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
7
hosts/common/user/configs/console/fastfetch/default.nix
Normal file
7
hosts/common/user/configs/console/fastfetch/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
username ? throw "username argument is required",
|
||||
}:
|
||||
{ ... }:
|
||||
{
|
||||
home-manager.users.${username}.programs.fastfetch.enable = true;
|
||||
}
|
7
hosts/common/user/configs/console/ranger/default.nix
Normal file
7
hosts/common/user/configs/console/ranger/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
username ? throw "username argument is required",
|
||||
}:
|
||||
{ ... }:
|
||||
{
|
||||
home-manager.users.${username}.programs.ranger.enable = true;
|
||||
}
|
7
hosts/common/user/configs/console/tmux/default.nix
Normal file
7
hosts/common/user/configs/console/tmux/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
username ? throw "username argument is required",
|
||||
}:
|
||||
{ ... }:
|
||||
{
|
||||
home-manager.users.${username}.programs.tmux.enable = true;
|
||||
}
|
7
hosts/common/user/configs/console/tree/default.nix
Normal file
7
hosts/common/user/configs/console/tree/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
username ? throw "username argument is required",
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home-manager.users.${username}.home.packages = with pkgs; [ tree ];
|
||||
}
|
7
hosts/common/user/configs/console/wget/default.nix
Normal file
7
hosts/common/user/configs/console/wget/default.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{
|
||||
username ? throw "username argument is required",
|
||||
}:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home-manager.users.${username}.home.packages = with pkgs; [ wget ];
|
||||
}
|
@@ -12,6 +12,7 @@ in
|
||||
(import ../common/user/configs/console/brightnessctl { inherit username; })
|
||||
(import ../common/user/configs/console/btop { inherit username; })
|
||||
(import ../common/user/configs/console/docker { inherit username; })
|
||||
(import ../common/user/configs/console/fastfetch { inherit username; })
|
||||
(import ../common/user/configs/console/ffmpeg { inherit username; })
|
||||
(import ../common/user/configs/console/git { inherit username; })
|
||||
(import ../common/user/configs/console/gpg-agent { inherit username; })
|
||||
@@ -20,8 +21,12 @@ in
|
||||
(import ../common/user/configs/console/neovim { inherit username; })
|
||||
(import ../common/user/configs/console/nixpkgs { inherit username; })
|
||||
(import ../common/user/configs/console/pipewire { inherit username; })
|
||||
(import ../common/user/configs/console/ranger { inherit username; })
|
||||
(import ../common/user/configs/console/sops { inherit username; })
|
||||
(import ../common/user/configs/console/syncthing { inherit username; })
|
||||
(import ../common/user/configs/console/tmux { inherit username; })
|
||||
(import ../common/user/configs/console/tree { inherit username; })
|
||||
(import ../common/user/configs/console/wget { inherit username; })
|
||||
(import ../common/user/configs/console/xdg { inherit username; })
|
||||
(import ../common/user/configs/console/zsh { inherit username; })
|
||||
(import ../common/user/configs/gui/ags { inherit username; })
|
||||
|
Reference in New Issue
Block a user