Backup
This commit is contained in:
parent
32b53a7fd6
commit
811660e30a
11 changed files with 49 additions and 8 deletions
modules
|
@ -5,14 +5,14 @@
|
|||
exa # ls replacement
|
||||
mkpasswd # hash passwords
|
||||
gnupg # forgot what this was
|
||||
acpi # show remaining battery
|
||||
# acpi # show remaining battery
|
||||
# typespeed # speed typing game
|
||||
# unixtools.xxd # to dump binary stuff into a text file (used it for a ctf)
|
||||
# youtube-dl # download from youtube
|
||||
neofetch # display system information
|
||||
xclip # copy paste stuff
|
||||
# feh # image viewer
|
||||
speedtest-cli # test the internet speed and stuff
|
||||
# speedtest-cli # test the internet speed and stuff
|
||||
# openssl
|
||||
# pkgconfig
|
||||
# ngrok
|
||||
|
@ -40,6 +40,7 @@
|
|||
# vim
|
||||
# emacs
|
||||
vimclip # use neovim anywhere
|
||||
neovide # neovim ui!
|
||||
|
||||
# chat apps
|
||||
# slack
|
||||
|
|
|
@ -28,4 +28,8 @@
|
|||
|
||||
# Render git repo using gource
|
||||
"git-render" = "gource -f -s 1 -c 4 --key";
|
||||
|
||||
# Neovide multigrid by default
|
||||
neovide = "neovide --multigrid";
|
||||
}
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ in
|
|||
{
|
||||
users.defaultUserShell = pkgs.fish;
|
||||
home-manager.users.adrielus = {
|
||||
programs.command-not-found.enable = false;
|
||||
programs.nix-index.enable = true;
|
||||
|
||||
# Source every file in the theme
|
||||
xdg.configFile."fish/conf.d/plugin-${theme}.fish".text = lib.mkAfter ''
|
||||
for f in $plugin_dir/*.fish
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, ... }: {
|
||||
{ pkgs, inputs, lib, config, ... }: {
|
||||
nix = {
|
||||
gc.automatic = true;
|
||||
optimise.automatic = true;
|
||||
|
@ -11,6 +11,14 @@
|
|||
experimental-features = nix-command flakes
|
||||
'';
|
||||
|
||||
# This will add each flake input as a registry
|
||||
# To make nix3 commands consistent with your flake
|
||||
registry = lib.mapAttrs (_: value: { flake = value; }) inputs;
|
||||
|
||||
# This will additionally add your inputs to the system's legacy channels
|
||||
# Making legacy nix commands consistent as well, awesome!
|
||||
# nixPath = lib.mapAttrsToList (key: value: "${key}=${value.to.path}") config.nix.registry;
|
||||
|
||||
settings = {
|
||||
trusted-users = [ "root" "adrielus" "@wheel" ];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue