tvl-depot/home/home.nix

105 lines
1.9 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
chromium
xclip
xorg.xev
# 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
# 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-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";
extraConfig = {
github.user = "glittershark";
};
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
}