This commit is contained in:
aloslider
2026-05-10 11:46:58 +03:00
parent 64b87222bd
commit f212c874b5
29 changed files with 689 additions and 80 deletions
+2
View File
@@ -3,8 +3,10 @@
imports = [
./disko.nix
./locale.nix
./netbird.nix
./nix.nix
./packages.nix
./sops.nix
./zsh.nix
];
}
+1 -2
View File
@@ -2,7 +2,6 @@
config,
disko,
lib,
inputs,
...
}:
with lib;
@@ -11,7 +10,7 @@ let
in
{
imports = [
inputs.disko.nixosModules.disko
disko.nixosModules.disko
];
options.disko.cfg = {
+4
View File
@@ -0,0 +1,4 @@
{ config, ... }:
{
services.netbird.enable = true;
}
+6 -1
View File
@@ -1,8 +1,13 @@
{ congif, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
age
bind
btop
git
neovim
jq
openssl
tmux
tree
];
}
+1 -1
View File
@@ -10,7 +10,7 @@
validateSopsFiles = false;
secrets = {
benq-password = {
neededForUsers = true;
neededForUsers = true;
};
};
};
+5
View File
@@ -0,0 +1,5 @@
{ config, ... }:
{
# programs.zsh.enable = true;
programs.nix-ld.enable = true;
}