chore: remove some unused stuff

This commit is contained in:
uku 2025-01-09 15:33:44 +01:00
parent 55f22b08f1
commit 3426a33c0b
Signed by: uku
SSH key fingerprint: SHA256:4P0aN6M8ajKukNi6aPOaX0LacanGYtlfjmN+m/sHY/o
2 changed files with 3 additions and 20 deletions

View file

@ -3,12 +3,11 @@
pkgs, pkgs,
config, config,
_utils, _utils,
camasca,
nixpkgs,
agenix, agenix,
camasca,
home-manager, home-manager,
nixpkgs,
vencord, vencord,
hydro,
... ...
}: }:
let let
@ -35,7 +34,6 @@ in
../programs/fish.nix ../programs/fish.nix
../programs/git.nix ../programs/git.nix
# ../programs/starship
]; ];
age = { age = {
@ -135,12 +133,10 @@ in
substituters = [ substituters = [
"https://uku3lig.cachix.org" "https://uku3lig.cachix.org"
"https://ghostty.cachix.org"
]; ];
trusted-public-keys = [ trusted-public-keys = [
"uku3lig.cachix.org-1:C1/9DNUadh2pueAo+LUkVNUKyIVjF/CREd9RS9E+F2A=" "uku3lig.cachix.org-1:C1/9DNUadh2pueAo+LUkVNUKyIVjF/CREd9RS9E+F2A="
"ghostty.cachix.org-1:QB389yTa6gTyneehvqG58y0WnHjQOqgnA+wBnpWWxns="
]; ];
}; };
}; };
@ -148,7 +144,7 @@ in
nixpkgs = { nixpkgs = {
config.allowUnfree = true; config.allowUnfree = true;
flake.setNixPath = false; flake.setNixPath = false;
overlays = [ (import ../exprs/overlay.nix { inherit vencord hydro; }) ]; overlays = [ (import ../exprs/overlay.nix { inherit vencord; }) ];
}; };
programs = { programs = {
@ -201,11 +197,6 @@ in
}; };
}; };
system.switch = {
enable = false;
enableNg = true;
};
systemd = { systemd = {
services.NetworkManager-wait-online.enable = lib.mkForce false; services.NetworkManager-wait-online.enable = lib.mkForce false;

View file

@ -15,14 +15,6 @@ in
secrets.generate secrets.generate
]; ];
_module.args.nixinate = {
host = config.networking.hostName;
sshUser = "leo";
buildOn = "remote";
substituteOnTarget = true;
hermetic = false; # hermetic fucks up for cross-system deployments
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
ghostty.terminfo ghostty.terminfo
]; ];