nixos-config/2configs/home-manager/default.nix

14 lines
275 B
Nix
Raw Normal View History

2018-09-19 02:52:58 +02:00
{
imports = [
<home-manager/nixos>
];
2019-04-17 21:44:00 +02:00
home-manager.useUserPackages = true;
home-manager.useGlobalPkgs = true;
2018-09-19 02:52:58 +02:00
home-manager.users.makefu = {
2019-04-17 21:44:00 +02:00
home.stateVersion = "19.03";
2018-09-19 02:52:58 +02:00
};
2018-10-21 23:28:52 +02:00
environment.variables = {
GTK_DATA_PREFIX = "/run/current-system/sw";
};
2018-09-19 02:52:58 +02:00
}