14 lines
223 B
Nix
14 lines
223 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
home.homeDirectory = "/home/origami";
|
|
|
|
imports = [
|
|
../modules/common.nix
|
|
../modules/shell.nix
|
|
../modules/zsh.nix
|
|
../modules/shell-develop.nix
|
|
../modules/ssh.nix
|
|
];
|
|
}
|