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/alsi.nix
./modules/development.nix
2020-03-28 04:32:13 +01:00
./modules/emacs.nix
2020-03-29 18:49:51 +02:00
./modules/email.nix
./modules/firefox.nix
./modules/games.nix
2020-03-28 04:32:13 +01:00
./modules/i3.nix
./modules/shell.nix
2020-05-04 19:12:31 +02:00
./modules/tarsnap.nix
2020-03-28 04:32:13 +01:00
./modules/vim.nix
2020-05-04 19:17:59 +02:00
2020-05-07 16:56:09 +02:00
~/code/urb/urbos/home
2020-05-04 19:17:59 +02:00
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";
# for when hacking
programs.home-manager.path = "/home/grfn/code/home-manager";
2020-03-28 04:32:13 +01:00
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
2020-05-04 19:17:59 +02:00
vlc
irssi
gnutls
2020-05-11 00:40:54 +02:00
pandoc
2020-05-18 16:25:23 +02:00
barrier
# 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
2020-05-04 19:17:59 +02:00
unzip
# Security
gnupg
2020-05-04 19:17:59 +02:00
keybase
openssl
2020-03-28 04:32:13 +01:00
# Spotify...etc
spotify
playerctl
# Nix things
2020-05-18 16:25:23 +02:00
nixfmt
nix-prefetch-github
2020-05-08 17:55:54 +02:00
nix-review
cachix
2020-03-28 04:32:13 +01:00
];
nixpkgs.config.allowUnfree = true;
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-05-04 19:17:59 +02:00
gtk = {
enable = true;
gtk3.bookmarks = [
"file:///home/grfn/code"
];
};
programs.tarsnap = {
enable = true;
keyfile = "/home/grfn/.private/tarsnap.key";
printStats = true;
humanizeNumbers = true;
};
2020-03-28 04:32:13 +01:00
}