mirror of
https://github.com/blahai/nyx.git
synced 2025-06-23 11:37:02 -04:00
lot of stuffies
This commit is contained in:
parent
6b3811a888
commit
a56e3c8aa4
6 changed files with 47 additions and 46 deletions
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
pkgs,
|
||||
pkgs-smol,
|
||||
lib,
|
||||
modulesPath,
|
||||
config,
|
||||
|
@ -9,12 +8,7 @@
|
|||
imports = ["${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"];
|
||||
|
||||
boot = {
|
||||
supportedFilesystems = ["zfs"];
|
||||
zfs = {
|
||||
forceImportRoot = false;
|
||||
package = pkgs-smol.zfs;
|
||||
};
|
||||
kernelPackages = pkgs-smol.linuxPackages_6_12;
|
||||
kernelPackages = pkgs.linuxPackages_6_12;
|
||||
kernelParams = lib.mkAfter ["noquiet" "toram"];
|
||||
enableContainers = false;
|
||||
};
|
||||
|
@ -26,21 +20,13 @@
|
|||
neovim
|
||||
parted
|
||||
git
|
||||
nixd
|
||||
pciutils
|
||||
|
||||
# The installers
|
||||
arch-install-scripts # For arch and it's
|
||||
xbps # Void linux
|
||||
dnf5 # Fedora
|
||||
debootstrap # Debin and ubuntu
|
||||
apt # Ubuntu
|
||||
];
|
||||
|
||||
documentation = {
|
||||
enable = lib.mkDefault false;
|
||||
doc.enable = lib.mkDefault false;
|
||||
info.enable = lib.mkDefault false;
|
||||
enable = lib.mkForce false;
|
||||
doc.enable = lib.mkForce false;
|
||||
info.enable = lib.mkForce false;
|
||||
};
|
||||
|
||||
networking = {
|
||||
|
@ -51,6 +37,20 @@
|
|||
services = {
|
||||
logrotate.enable = false;
|
||||
udisks2.enable = false;
|
||||
openssh = {
|
||||
enable = true;
|
||||
settings = {
|
||||
PermitRootLogin = "yes";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
users.users = {
|
||||
root = {
|
||||
openssh.authorizedKeys.keys = [
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPbmiNqoyeKXk/VopFm2cFfEnV4cKCFBhbhyYB69Fuu"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
@ -78,7 +78,6 @@
|
|||
"nix-command"
|
||||
"flakes"
|
||||
"auto-allocate-uids"
|
||||
"pipe-operator"
|
||||
"recursive-nix"
|
||||
"ca-derivations"
|
||||
"dynamic-derivations"
|
||||
|
@ -94,15 +93,11 @@
|
|||
"https://nix-community.cachix.org"
|
||||
"https://nixpkgs-unfree.cachix.org"
|
||||
"https://hyprland.cachix.org/"
|
||||
"https://anyrun.cachix.org"
|
||||
"https://wezterm.cachix.org"
|
||||
];
|
||||
trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
"nixpkgs-unfree.cachix.org-1:hqvoInulhbV4nJ9yJOEr+4wxhDV4xq2d1DK7S6Nj6rs="
|
||||
"hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||
"anyrun.cachix.org-1:pqBobmOjI7nKlsUMV25u9QHa9btJK65/C8vnO3p346s="
|
||||
"wezterm.cachix.org-1:kAbhjYUC9qvblTE+s7S+kl5XM1zVa4skO+E/1IDWdH0="
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue