Change flake.nix to allow different nixpkgs versions
This commit is contained in:
23
hosts/default/home.nix
Normal file
23
hosts/default/home.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
||||
imports = [
|
||||
../../modules/home
|
||||
];
|
||||
|
||||
home = {
|
||||
username = "eesim";
|
||||
homeDirectory = "/home/eesim";
|
||||
};
|
||||
|
||||
home.file.".config/nvim".source = ../shared/dotfiles/nvim;
|
||||
home.file.".tmux.conf".source = ../shared/dotfiles/tmux;
|
||||
|
||||
programs.home-manager.enable = true;
|
||||
|
||||
home.stateVersion = "23.11";
|
||||
}
|
||||
Reference in New Issue
Block a user