10 lines
254 B
Nix
10 lines
254 B
Nix
{pkgs, ...}: let
|
|
home-manager = builtins.fetchTarball "https://github.com/nix-community/home-manager/archive/master.tar.gz";
|
|
in {
|
|
imports = [(import "${home-manager}/nixos")];
|
|
home.packages = with pkgs; [
|
|
libreoffice-fresh
|
|
otpclient
|
|
];
|
|
}
|