nix/laptop/home-manager.nix

15 lines
445 B
Nix
Raw Normal View History

2023-06-29 14:16:58 +02:00
{ config, pkgs, ... }:
let
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
in
{
imports = [
(import "${home-manager}/nixos")
];
home-manager.users.albert = {
/* The home.stateVersion option does not have a default and must be set */
home.stateVersion = "unstable";
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
};
}