mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-07-05 00:37:19 +02:00
Merge branch 'main' of github.com:JulienMalka/nix-config
This commit is contained in:
commit
e1871c459f
3 changed files with 39 additions and 2 deletions
|
@ -136,8 +136,8 @@ steps:
|
|||
- git checkout -b flake-update
|
||||
- git add flake.lock
|
||||
- git commit -m "Updated flake lock"
|
||||
- git config --global --add url."git@github.com:".insteadOf "https://github.com/"
|
||||
- git config core.sshCommand 'ssh -i /home/droneserver/.ssh/id_rsa'
|
||||
- git config --add url."git@github.com:".insteadOf "https://github.com/"
|
||||
- git config core.sshCommand 'ssh -i /home/drone/.ssh/id_rsa'
|
||||
- git push --force --set-upstream origin flake-update
|
||||
|
||||
trigger:
|
||||
|
|
|
@ -1,6 +1,23 @@
|
|||
{ config, pkgs, lib, ... }:
|
||||
{
|
||||
|
||||
sops.secrets.ssh-macintosh-pub = {
|
||||
owner = "julien";
|
||||
path = "/home/julien/.ssh/id_ed25519.pub";
|
||||
mode = "0644";
|
||||
format = "binary";
|
||||
sopsFile = ../../secrets/ssh-macintosh-pub;
|
||||
};
|
||||
|
||||
sops.secrets.ssh-macintosh-priv = {
|
||||
owner = "julien";
|
||||
path = "/home/julien/.ssh/id_ed25519";
|
||||
mode = "0600";
|
||||
format = "binary";
|
||||
sopsFile = ../../secrets/ssh-macintosh-priv;
|
||||
};
|
||||
|
||||
|
||||
luj.hmgr.julien = {
|
||||
luj.programs.neovim.enable = true;
|
||||
luj.programs.git.enable = true;
|
||||
|
@ -32,6 +49,7 @@
|
|||
ungoogled-chromium
|
||||
networkmanagerapplet
|
||||
sops
|
||||
jftui
|
||||
];
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,24 @@
|
|||
{ pkgs, config, lib, ... }:
|
||||
{
|
||||
|
||||
sops.secrets.ssh-newton-pub = {
|
||||
owner = "julien";
|
||||
path = "/home/julien/.ssh/id_ed25519.pub";
|
||||
mode = "0644";
|
||||
format = "binary";
|
||||
sopsFile = ../../secrets/ssh-newton-pub;
|
||||
};
|
||||
|
||||
sops.secrets.ssh-newton-priv = {
|
||||
owner = "julien";
|
||||
path = "/home/julien/.ssh/id_ed25519";
|
||||
mode = "0600";
|
||||
format = "binary";
|
||||
sopsFile = ../../secrets/ssh-newton-priv;
|
||||
};
|
||||
|
||||
|
||||
|
||||
luj.hmgr.julien = {
|
||||
luj.programs.neovim.enable = true;
|
||||
luj.programs.git.enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue