dotfiles/nixos/home-other-os.nix

33 lines
728 B
Nix
Raw Normal View History

2019-08-04 20:15:07 +01:00
{ config, pkgs, ... }:
let
unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz;
dotfiles = "/home/cyryl/dev/dotfiles";
in
{
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
unstable = import unstableTarball {
config = config.nixpkgs.config;
};
};
};
2019-11-21 22:46:22 +00:00
2019-11-23 09:03:58 +00:00
home.sessionVariables = {
PASSWORD_STORE_ENABLE_EXTENSIONS="true";
};
2019-11-21 22:43:09 +00:00
2019-11-23 10:04:42 +00:00
home.file.".gitconfig".source = ~/dev/dotfiles/.gitconfig.linux.form3;
2019-11-23 09:03:58 +00:00
imports = [
./programs/tmux.nix
./programs/zsh.nix
./programs/vim.nix
2019-11-23 09:35:17 +00:00
./programs/alacritty.nix
2019-11-23 09:03:58 +00:00
./programs.nix
./links.nix
./cli.nix
];
}