18 lines
386 B
Nix
18 lines
386 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
|
|
];
|
|
|
|
programs.fish.shellAliases = {
|
|
"flake-update" = "nixos-rebuild switch --use-remote-sudo --flake ${config.home.homeDirectory}/flakes#oparic-local-dev";
|
|
};
|
|
}
|