hosts: orm: initial setup

This commit is contained in:
Katherina Walshe-Grey 2024-07-02 17:53:22 +01:00
parent 7c700718ed
commit 8c089a1a55
4 changed files with 80 additions and 0 deletions

12
hosts/orm/home.nix Normal file
View file

@ -0,0 +1,12 @@
{ config, lib, pkgs, ... }:
{
home-manager.users.qenya = { pkgs, ... }: {
imports = [
../../home/cli.nix
../../home/git.nix
];
home.stateVersion = "23.11";
};
}