use colmena to deploy linux machine

This commit is contained in:
Sridhar Ratnakumar 2024-05-19 10:11:14 -04:00
parent f37a033fc3
commit f94ed24706
2 changed files with 7 additions and 1 deletions

View file

@ -52,6 +52,10 @@
[ "op" "read" "op://Personal/nixos-config/${field}" ];
in
{
immediacy = {
targetHost = "immediacy";
targetUser = "srid";
};
github-runner =
let
user = "github-runner";

View file

@ -1,6 +1,8 @@
{ pkgs, ... }:
{
programs.nixvim = {
enable = true;
enable = pkgs.stdenv.isDarwin; # nixvim uses IFD; so not using it on Linux (breaks colmena apply)
# Theme
colorschemes.tokyonight.enable = true;