dotfiles/nixos/home.nix

30 lines
636 B
Nix
Raw Normal View History

2019-06-30 15:18:38 +01:00
{ config, pkgs, ... }:
2019-06-30 20:28:10 +01:00
let
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
2019-07-21 16:47:36 +01:00
dotfiles = "/home/cyryl/dev/dotfiles";
2019-06-30 20:28:10 +01:00
in
2019-07-07 12:08:00 +01:00
{
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
2019-06-30 20:28:10 +01:00
};
};
2019-08-24 18:53:12 +01:00
2020-04-19 12:47:21 +01:00
home.sessionVariables = {
TERMINAL="alacritty";
};
2020-04-18 14:40:52 +01:00
home.file.".config/i3/status.toml".source = ~/dev/dotfiles/.config/i3/status-double-bat.toml;
2020-04-18 12:02:27 +01:00
2019-07-07 11:45:08 +01:00
imports = [
2020-04-19 12:23:21 +01:00
./home-common.nix
2019-08-04 20:13:54 +01:00
./programs/git.nix
2019-11-23 09:03:58 +00:00
./gui.nix
2019-07-07 12:08:00 +01:00
];
2019-06-30 17:21:25 +01:00
2019-07-07 12:08:00 +01:00
}