does commiting make a difference?

This commit is contained in:
Till 2023-05-10 23:35:26 +02:00
parent 6d3c3fb304
commit 4768034eb8
4 changed files with 122 additions and 27 deletions

51
home-manager/home.nix Normal file
View file

@ -0,0 +1,51 @@
{ config, pkgs, inputs, lib, ... }:
{
home.username = "till";
home.homeDirectory = "/home/till";
home.stateVersion = "22.11";
nixpkgs = {
config = {
allowUnfree = true;
allowUnfreePredicate = (_: true);
};
};
programs.home-manager.enable = true;
home.packages = with pkgs; [
exa
firefox
fzf
jq
khal
khard
neomutt
nodejs
qutebrowser
R
rstudio
ruby
tmux
tree
vdirsyncer
];
programs.neovim = {
enable = true;
};
# home.sessionVariables = {
# EDITOR="nvim";
# };
# home.shellAliases = {
# l = "exa";
# ls = "exa";
# cat = "bat";
# };
programs.fish = {
enable = true;
};
}