tvl-depot/home/home.nix

126 lines
2.3 KiB
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, pkgs, ... }:
2020-03-29 18:51:55 +02:00
let machine = ./machines/chupacabra.nix; in
2020-03-28 04:32:13 +01:00
{
imports = [
./modules/alacritty.nix
./modules/emacs.nix
2020-03-29 18:49:51 +02:00
./modules/email.nix
./modules/firefox.nix
2020-03-28 04:32:13 +01:00
./modules/i3.nix
./modules/shell.nix
./modules/vim.nix
./modules/alsi.nix
./modules/lib/cloneRepo.nix
2020-03-29 18:51:55 +02:00
machine
2020-03-28 04:32:13 +01:00
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
xsession.enable = true;
# This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage
# when a new Home Manager release introduces backwards
# incompatible changes.
#
# You can update Home Manager without changing this value. See
# the Home Manager release notes for a list of state version
# changes in each release.
home.stateVersion = "19.09";
home.packages = with pkgs; [
2020-03-31 23:11:00 +02:00
(import (fetchTarball "https://github.com/ashkitten/nixpkgs/archive/init-glimpse.tar.gz") {}).glimpse
# Desktop stuff
arandr
firefox
2020-04-04 17:38:27 +02:00
feh
chromium
xclip
xorg.xev
2020-04-04 17:38:27 +02:00
picom
peek
2020-04-09 05:24:01 +02:00
signal-desktop
apvlv # pdf viewer
# System utilities
2020-03-28 04:32:13 +01:00
htop
powertop
usbutils
2020-03-31 23:11:00 +02:00
pciutils
killall
2020-03-31 23:11:00 +02:00
gdmap
2020-04-04 17:38:27 +02:00
bind
lsof
2020-04-09 05:24:01 +02:00
zip
tree
ncat
# Security
gnupg
# Programming
jq
2020-03-28 04:32:13 +01:00
gitAndTools.hub
gitAndTools.tig
2020-03-28 04:32:13 +01:00
shellcheck
httpie
2020-03-31 23:11:00 +02:00
entr
2020-04-09 05:24:01 +02:00
gnumake
2020-03-28 04:32:13 +01:00
# Spotify...etc
spotify
playerctl
# games
crawl
dwarf-fortress
# Nix things
nix-prefetch-github
2020-03-28 04:32:13 +01:00
];
nixpkgs.config.allowUnfree = true;
programs.git = {
enable = true;
userEmail = "root@gws.fyi";
userName = "Griffin Smith";
2020-04-09 05:24:23 +02:00
ignores = [
"*.sw*"
".classpath"
".project"
".settings/"
".dir-locals.el"
".stack-work-profiling"
".projectile"
];
extraConfig = {
github.user = "glittershark";
merge.conflictstyle = "diff3";
};
2020-03-28 04:32:13 +01:00
};
programs.password-store.enable = true;
2020-03-28 04:32:13 +01:00
services.redshift = {
enable = true;
provider = "geoclue2";
};
services.pasystray.enable = true;
impure.clonedRepos.passwordStore = {
github = "glittershark/pass";
path = ".local/share/password-store";
2020-03-28 04:32:13 +01:00
};
urbint.projectPath = "code/urb";
services.gpg-agent = {
enable = true;
};
2020-03-28 04:32:13 +01:00
}