renamed programms to programs

This commit is contained in:
Sebastian Moser
2023-10-29 10:29:04 +00:00
parent c2705c1feb
commit 30635d9bf1
11 changed files with 18 additions and 16 deletions

View File

@@ -3,15 +3,15 @@
{
imports = [
./programms/git.nix
./programms/lf/default.nix
./programms/alacritty.nix
./programms/bash.nix
./programms/emacs.nix
./programms/rofi/default.nix
./programms/zathura.nix
./programms/ssh.nix
./programms/neovim.nix
./programs/git.nix
./programs/lf/default.nix
./programs/alacritty.nix
./programs/bash.nix
./programs/emacs/default.nix
./programs/rofi/default.nix
./programs/zathura.nix
./programs/ssh.nix
./programs/neovim.nix
];
home-manager.users.me = { config, pkgs, ... }: {

View File

@@ -1,6 +0,0 @@
{ inputs, ... }:
{
#home-manager.users.me.programs.emcas = {
#enable = true;
#};
}

View File

@@ -53,7 +53,11 @@
vim = "nvim";
sl = "ls";
virsh = "virsh -c qemu:///system";
nmgui = "nm-applet 2>&1 > /dev/null &; stalonetray 2>&1 > /dev/null; killall nm-applet";
nmgui = ''
nm-applet 2>&1 > /dev/null &
stalonetray 2>&1 > /dev/null
killall nm-applet
'';
c = "cd ..";
ne= "alacritty &";
cbs = "history | tail -n 2 | head -n 1 | awk '{\$1=\"\"; print \$0}' | cut -c 2- | cb";
@@ -74,6 +78,10 @@
export PS1="\[\033[01;34m\]\W\[\033[00m\]\[\033[01;32m\]\[\033[00m\] "
# so that programms i spawn from my shell don't have so high cpu priority
renice -n 9 $$ > /dev/null
# If not running interactively, don't do anything
case $- in
*i*) ;;