tvl-depot/users/grfn/system/home/home.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
581 B
Nix
Raw Normal View History

2020-03-28 04:32:13 +01:00
{ config, pkgs, ... }:
{
imports = [
(throw "Pick a machine from ./machines")
2020-03-28 04:32:13 +01:00
];
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
# 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 = "19.09";
}