test
This commit is contained in:
parent
9ebffd82c6
commit
2718a905c9
11 changed files with 133 additions and 8 deletions
|
|
@ -11,7 +11,8 @@
|
|||
imports =
|
||||
[ # Include the results of the hardware scan.
|
||||
./hardware-configuration.nix
|
||||
# ./services/jellyfin.nix
|
||||
./services/jellyfin.nix
|
||||
./services/authentik.nix
|
||||
# ./services/calibre-web.nix
|
||||
# ./services/glances.nix
|
||||
# ./services/fail2ban.nix
|
||||
|
|
@ -22,11 +23,13 @@
|
|||
boot.loader.grub.enable = true;
|
||||
boot.loader.grub.device = "/dev/sda";
|
||||
boot.loader.grub.useOSProber = true;
|
||||
boot.supportedFilesystems = [ "zfs" ];
|
||||
boot.zfs.extraPools = [ "plakias" ];
|
||||
|
||||
# Nix settings
|
||||
nix = {
|
||||
settings = {
|
||||
#experimental-features = [ "nix-command" "flakes" ];
|
||||
# experimental-features = [ "nix-command" "flakes" ];
|
||||
download-buffer-size = "4G";
|
||||
warn-dirty = false;
|
||||
};
|
||||
|
|
@ -42,12 +45,24 @@
|
|||
# Networking
|
||||
networking.hostName = "knossos"; # Define your hostname.
|
||||
networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
networking.hostId = "f8f05846";
|
||||
|
||||
networking.wireless.networks = {
|
||||
# SSID with spaces and/or special characters
|
||||
"Suntek_188" = {
|
||||
psk = "0226203850";
|
||||
};
|
||||
"Suntek_288" = {
|
||||
psk = "0226203850";
|
||||
};
|
||||
"Pixel_9407" = {
|
||||
psk = "dieai888";
|
||||
};
|
||||
"hercules" = {
|
||||
psk = "0531thewire";
|
||||
};
|
||||
|
||||
|
||||
};
|
||||
|
||||
# Enable networking
|
||||
|
|
@ -86,6 +101,9 @@
|
|||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILv96m1nCz3D0lzjzeGa+n4m3krEyl7KZ0tstjIZdTkq elias@bluefin" #acer
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK8zlxSVOTCnAgb4U5vkC3ietH3Jd9gLE+FA6UOZp64J elias@arkadi.one"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKWN6eeLFbtRJDEebSjoI8FaDOA5bmIzbyTUvX/hPWdh elias@greynix" #asus - greynix
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO/akM7XlILO499DvQhDa2+UnbbwaXB76a+XDxr8Yvdw elias@aspire"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFa3Gk2C2HmniiwMyYQ3HFs9M4W+obz2y3HNsEo6DA0c macbookpro"
|
||||
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINyRtSVEpOZ08QoOhwfMizYXJxLFCJ/jfIlP4FMD1zga elias@bluefin" #framework
|
||||
];
|
||||
linger = true;
|
||||
packages = with pkgs; [];
|
||||
|
|
@ -122,6 +140,7 @@
|
|||
git
|
||||
neovim
|
||||
emacs
|
||||
vim
|
||||
|
||||
tmux #like screen
|
||||
wiper #like ncdu
|
||||
|
|
@ -129,6 +148,7 @@
|
|||
|
||||
tcpdump #for wireguard test
|
||||
|
||||
ncdu
|
||||
];
|
||||
|
||||
# List services that you want to enable:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue