nixos-config/home/felschr.nix

58 lines
912 B
Nix
Raw Normal View History

2019-08-24 13:12:32 +02:00
{ config, pkgs, ... }:
2019-10-19 12:55:35 +02:00
with pkgs;
2019-08-24 13:12:32 +02:00
{
2019-10-19 12:55:35 +02:00
imports = [
./common/sh.nix
./common/mimeapps.nix
./common/gui.nix
./common/gnome.nix
./common/neovim.nix
./common/emacs.nix
./common/vscode.nix
./common/keybase.nix
./common/signal.nix
./common/chromium.nix
];
2019-08-24 13:12:32 +02:00
2019-10-19 12:55:35 +02:00
nixpkgs.config.allowUnfree = true;
2019-08-24 13:12:32 +02:00
services.redshift = {
enable = true;
latitude = "53.2603609";
longitude = "10.4014691";
brightness = {
day = "0.9";
night = "0.9";
};
2019-08-24 13:12:32 +02:00
};
programs.git = {
enable = true;
userName = "Felix Tenley";
userEmail = "dev@felschr.com";
};
home.packages = with pkgs; [
2019-10-19 12:55:35 +02:00
# system
2019-10-19 09:14:56 +02:00
gparted
gnome-firmware-updater
2019-10-19 09:14:56 +02:00
2019-10-19 12:55:35 +02:00
# productivity
discord
2019-10-03 16:58:57 +02:00
# development
haskellPackages.ghc
2019-10-19 12:55:35 +02:00
# gaming
steam
linux-steam-integration
lutris
2019-10-19 12:55:35 +02:00
# other
ledger-live-desktop
2019-08-24 13:12:32 +02:00
];
2019-10-19 09:14:56 +02:00
home.stateVersion = "19.09";
2019-08-24 13:12:32 +02:00
}