first commit
This commit is contained in:
15
history/home.nix 22-03-25 3
Normal file
15
history/home.nix 22-03-25 3
Normal file
@@ -0,0 +1,15 @@
|
||||
{ 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.leo = {
|
||||
/* The home.stateVersion option does not have a default and must be set */
|
||||
home.stateVersion = "18.09";
|
||||
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user