malcolm: Init new host

This commit is contained in:
2024-09-05 20:58:05 +02:00
parent 618271b191
commit 8777536817
4 changed files with 86 additions and 0 deletions

12
hosts/malcolm/home.nix Normal file
View File

@@ -0,0 +1,12 @@
{ pkgs, lib, ... }:
{
imports = [
./../../home/base.nix
];
programs = {
zsh.shellAliases."rebuild" = "sudo nixos-rebuild switch --flake /config";
};
home.stateVersion = "24.05";
}