feat: Added phoenix

This commit is contained in:
fsc0131y
2024-05-14 10:23:24 +02:00
parent f24791fc84
commit a672b9b69d
4 changed files with 62 additions and 6 deletions

2
flake.lock generated
View File

@@ -1498,7 +1498,7 @@
}, },
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-seTVgA8Df4rzadXlItYv3+HWqjeKatFvGSQZI1FViB0=", "narHash": "sha256-aKhEoMYukWG2YmIiNR97RBmHcIYq46YB5hmj0HovPhs=",
"path": "./neovim", "path": "./neovim",
"type": "path" "type": "path"
}, },

View File

@@ -104,6 +104,15 @@
isServer = true; isServer = true;
live = true; live = true;
} }
{
name = "phoenix";
system = "x86_64-linux";
user = "fs0c131y";
isNix = true;
hasGui = false;
isServer = true;
live = true;
}
{ {
name = "ryu"; name = "ryu";
system = "x86_64-linux"; system = "x86_64-linux";

53
neovim/flake.lock generated
View File

@@ -1,5 +1,21 @@
{ {
"nodes": { "nodes": {
"d2": {
"flake": false,
"locked": {
"lastModified": 1675176182,
"narHash": "sha256-+mT4pEbtq7f9ZXhOop3Jnjr7ulxU32VtahffIwQqYF4=",
"owner": "terrastruct",
"repo": "d2-vim",
"rev": "981c87dccb63df2887cc41b96e84bf550f736c57",
"type": "github"
},
"original": {
"owner": "terrastruct",
"repo": "d2-vim",
"type": "github"
}
},
"devshell": { "devshell": {
"inputs": { "inputs": {
"flake-utils": "flake-utils", "flake-utils": "flake-utils",
@@ -505,6 +521,7 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"d2": "d2",
"gp-nvim": "gp-nvim", "gp-nvim": "gp-nvim",
"neogit": "neogit", "neogit": "neogit",
"neorg": "neorg", "neorg": "neorg",
@@ -515,7 +532,9 @@
"nvim-devdocs": "nvim-devdocs", "nvim-devdocs": "nvim-devdocs",
"pets": "pets", "pets": "pets",
"rest-nvim": "rest-nvim", "rest-nvim": "rest-nvim",
"systems": "systems_4" "systems": "systems_4",
"tree-sitter-d2": "tree-sitter-d2",
"tree-sitter-just": "tree-sitter-just"
} }
}, },
"systems": { "systems": {
@@ -577,6 +596,38 @@
"repo": "default", "repo": "default",
"type": "github" "type": "github"
} }
},
"tree-sitter-d2": {
"flake": false,
"locked": {
"lastModified": 1694985317,
"narHash": "sha256-Auap3+yBBxv4RyiSaQ1sHKsSfzgrKdq0F1ethWnM+pE=",
"owner": "ravsii",
"repo": "tree-sitter-d2",
"rev": "c21126b5ee97b0dffe4b2f982932739f0a772743",
"type": "github"
},
"original": {
"owner": "ravsii",
"repo": "tree-sitter-d2",
"type": "github"
}
},
"tree-sitter-just": {
"flake": false,
"locked": {
"lastModified": 1714632960,
"narHash": "sha256-yuTcgNfF4oRNZkwwFpt5WLpWtTvgJJRDYo3CWnCNyiU=",
"owner": "IndianBoy42",
"repo": "tree-sitter-just",
"rev": "fd814fc6c579f68c2a642f5e0268cf69daae92d7",
"type": "github"
},
"original": {
"owner": "IndianBoy42",
"repo": "tree-sitter-just",
"type": "github"
}
} }
}, },
"root": "root", "root": "root",

View File

@@ -42,10 +42,6 @@ builtins.listToAttrs (builtins.map (device: {
users.users.root.openssh.authorizedKeys.keys = [ users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdV/cFR8ENy4vCHnK/dL+Ud7jOJV7+iLeAe8y5nj3xF email@uttarayan.me" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILdV/cFR8ENy4vCHnK/dL+Ud7jOJV7+iLeAe8y5nj3xF email@uttarayan.me"
]; ];
networking = {
# usePredictableInterfaceNames = false;
nameservers = ["1.1.1.1"];
};
}) })
]; ];
}; };