This commit is contained in:
Leon Kowarschick 2020-06-29 19:38:15 +02:00
parent a10fe2a643
commit 6db326ab7f
6 changed files with 44 additions and 3 deletions

View file

@ -1,4 +1,4 @@
{ {
"optOut": false, "optOut": false,
"lastUpdateCheck": 1593097287486 "lastUpdateCheck": 1593429304363
} }

View file

@ -79,3 +79,5 @@ fenv source '$HOME/.nix-profile/etc/profile.d/nix.sh'
#bass source '$HOME/.nix-profile/etc/profile.d/nix.sh' & #bass source '$HOME/.nix-profile/etc/profile.d/nix.sh' &
set -g NIX_PATH "$HOME/.nix-defexpr/channels:$NIX_PATH" set -g NIX_PATH "$HOME/.nix-defexpr/channels:$NIX_PATH"
fenv source "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh" fenv source "$HOME/.nix-profile/etc/profile.d/hm-session-vars.sh"
#eval (direnv hook fish)

View file

@ -20,6 +20,6 @@ gtk-decoration-layout=:
;gtk-font-name = DejaVu Sans 1 121 ;gtk-font-name = DejaVu Sans 1 121
;gtk-font-name = cozette 10 ;gtk-font-name = cozette 10
gtk-font-name = xos4 Terminus Regular 12 ;gtk-font-name = xos4 Terminus Regular 12
;gtk-font-name = Terminus 12 gtk-font-name = Terminus (TTF) 12
;gtk-font-name = cozette 10 ;gtk-font-name = cozette 10

View file

@ -0,0 +1,21 @@
{ config, pkgs, ... }:
let
elkowar_local = import ./local/default.nix {};
in
{
home.packages = [
elkowar_local.bashtop
pkgs.htop
pkgs.direnv
pkgs.rnix-lsp
pkgs.nix-prefetch-git
];
programs.home-manager.enable = true;
home.username = "leon";
home.homeDirectory = "/home/leon";
home.stateVersion = "20.09";
}

View file

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
{
bashtop = pkgs.callPackage ./packages/bashtop.nix {};
}

View file

@ -0,0 +1,14 @@
{ stdenv, fetchFromGitHub, gnumake }:
stdenv.mkDerivation rec {
pname = "bashtop";
version = "0.9.9";
src = fetchFromGitHub {
owner = "aristocratos";
repo = pname;
rev = "v${version}";
sha256 = "1gw9mslnq1f8516jd7l2ajh07g7a45z834jslpjai17p2ymhng9c";
};
nativeBuildInputs = [ gnumake ];
installFlags = [ "PREFIX=$(out)" ];
}