main
parent
4ac63cf2fc
commit
5aa9755ddb
@ -0,0 +1,49 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
dotfiles = fetchGit {
|
||||||
|
url = "https://github.com/kejadlen/dotfiles.git";
|
||||||
|
ref = "main";
|
||||||
|
rev = "b7c7b0bee54758917dbd699b556868220869ad17";
|
||||||
|
submodules = true;
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
# Let Home Manager install and manage itself.
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
|
# Home Manager needs a bit of information about you and the
|
||||||
|
# paths it should manage.
|
||||||
|
home.username = "alpha";
|
||||||
|
home.homeDirectory = "/Users/alpha";
|
||||||
|
|
||||||
|
# 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 = "21.05";
|
||||||
|
|
||||||
|
# https://github.com/nix-community/home-manager/pull/2647
|
||||||
|
home.stateVersion = "20.09";
|
||||||
|
|
||||||
|
home.file = {
|
||||||
|
".dotfiles".source = dotfiles;
|
||||||
|
# ".vim".source = ../../.vim;
|
||||||
|
# ".vimrc".source = ../../.vimrc;
|
||||||
|
|
||||||
|
# Hacky way of creating directories
|
||||||
|
".config/op/.keep".text = "";
|
||||||
|
".vim_tmp/.keep".text = "";
|
||||||
|
".vim_undo/.keep".text = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
ansible
|
||||||
|
# macvim
|
||||||
|
tmux
|
||||||
|
vim
|
||||||
|
];
|
||||||
|
}
|
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
description = "kejadlen/dotfiles";
|
||||||
|
|
||||||
|
inputs = {
|
||||||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
|
# nixpkgs.url = "flake:nixpkgs";
|
||||||
|
home-manager = {
|
||||||
|
url = "github:nix-community/home-manager";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
outputs = { home-manager, nixpkgs, ... }: {
|
||||||
|
homeConfigurations = {
|
||||||
|
macos = home-manager.lib.homeManagerConfiguration {
|
||||||
|
system = "x86_64-darwin";
|
||||||
|
homeDirectory = "/Users/alpha";
|
||||||
|
username = "alpha";
|
||||||
|
configuration.imports = [ ./dev.nix ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in new issue