[hosts] add oparic-local-dev

This commit is contained in:
2026-05-16 21:42:13 +08:00
parent 65f8fb639c
commit df61c211c2
4 changed files with 173 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{ 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";
};
}