chore: cleaned up system-wide pkgs

This commit is contained in:
Luka Dekanozishvili 2026-01-31 14:33:54 +01:00
parent bd59fcbeb3
commit 77244a2a6f
3 changed files with 4 additions and 8 deletions

View file

@ -7,11 +7,6 @@
networking.hostName = "hexname-ns1"; networking.hostName = "hexname-ns1";
environment.systemPackages = with pkgs; [
hexname-backend
deno
];
users.users = { users.users = {
luka = { luka = {
isNormalUser = true; isNormalUser = true;
@ -36,8 +31,6 @@
}; };
}; };
nix.settings.trusted-users = [ "luka" ]; # TODO: remove this line
boot.loader.grub = { boot.loader.grub = {
enable = true; enable = true;
efiSupport = true; efiSupport = true;

View file

@ -7,6 +7,8 @@
}) })
]; ];
environment.systemPackages = with pkgs; [ hexname-backend ];
users.groups.hexname = {}; users.groups.hexname = {};
users.users = { users.users = {
hexname-backend = { hexname-backend = {

View file

@ -1,4 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env nix
#!nix shell nixpkgs#bash nixpkgs#deno --command bash
set -euo pipefail set -euo pipefail
cd /home/luka/HexName-Frontend cd /home/luka/HexName-Frontend