126 lines
3.5 KiB
Nix
126 lines
3.5 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
./hardening
|
|
./networking
|
|
./nix
|
|
|
|
# Flake modules
|
|
inputs.self.nixosModules.default
|
|
inputs.disko.nixosModules.disko
|
|
inputs.home-manager.nixosModules.home-manager
|
|
inputs.impermanence.nixosModules.impermanence
|
|
inputs.lanzaboote.nixosModules.lanzaboote
|
|
inputs.sops-nix.nixosModules.sops
|
|
inputs.nix-gaming.nixosModules.pipewireLowLatency
|
|
];
|
|
|
|
nixpkgs.overlays = [
|
|
inputs.self.overlays.nautilus.typeahead
|
|
inputs.self.overlays.prismlauncher.offline-mode
|
|
inputs.self.overlays.sway.input-method-popup
|
|
inputs.self.overlays.sway.tray-dbus-menu
|
|
];
|
|
|
|
### home-manager
|
|
home-manager.users.guanranwang = import ./home;
|
|
|
|
users.mutableUsers = false;
|
|
home-manager = {
|
|
useGlobalPkgs = true;
|
|
useUserPackages = true;
|
|
extraSpecialArgs = {inherit inputs;}; # ??? isnt specialArgs imported by default ???
|
|
};
|
|
|
|
### Boot
|
|
boot.initrd.systemd.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
boot.loader.systemd-boot.enable = lib.mkDefault true; # mkDefault for Lanzaboote
|
|
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_zen; # mkDefault for server
|
|
|
|
### Default Programs
|
|
environment.defaultPackages = [];
|
|
# In addtion of https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/config/system-path.nix
|
|
environment.systemPackages = with pkgs; [
|
|
unzip
|
|
wget
|
|
tree
|
|
file
|
|
htop
|
|
|
|
lsof
|
|
ltrace
|
|
|
|
dnsutils
|
|
pciutils
|
|
usbutils
|
|
];
|
|
programs.dconf.enable = true;
|
|
programs.nano.enable = false; # make sure to add another editor and set the $EDITOR variable
|
|
programs.neovim = {
|
|
enable = true;
|
|
viAlias = true;
|
|
vimAlias = true;
|
|
defaultEditor = true;
|
|
};
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PermitRootLogin = "no";
|
|
settings.PasswordAuthentication = false;
|
|
};
|
|
services.getty.greetingLine = let
|
|
inherit (config.system) nixos;
|
|
in ''
|
|
NixOS ${nixos.label} ${nixos.codeName} (\m) - \l
|
|
${lib.strings.optionalString (builtins.elem "nvidia" config.services.xserver.videoDrivers)
|
|
"--my-next-gpu-wont-be-nvidia"}
|
|
${lib.strings.optionalString (builtins.elem "amdgpu" config.boot.initrd.kernelModules)
|
|
"[ 5.996722] amdgpu 0000:67:00.0: Fatal error during GPU init"}
|
|
'';
|
|
|
|
### WORKAROUND: Use NVIDIA beta version 550.40.07 due to performance issues introduced in version 545.29.06,
|
|
# this shouldn't affect non-nvidia machines.
|
|
hardware.nvidia.package = config.boot.kernelPackages.nvidiaPackages.beta;
|
|
hardware.nvidia.nvidiaSettings = false;
|
|
|
|
users.users."guanranwang" = {
|
|
isNormalUser = true;
|
|
description = "Guanran Wang";
|
|
extraGroups = [
|
|
"wheel" # administrator
|
|
"networkmanager" # access to networkmanager
|
|
"tss" # access to tpm devices
|
|
"vboxusers" # access to virtualbox
|
|
"nix-access-tokens" # access to github tokens
|
|
"libvirtd" # access to virt-manager
|
|
];
|
|
hashedPasswordFile = config.sops.secrets."hashed-passwd".path;
|
|
shell = pkgs.fish;
|
|
packages = [];
|
|
};
|
|
|
|
programs.fish.enable = true;
|
|
users.groups."nix-access-tokens" = {};
|
|
nix.extraOptions = "!include ${config.sops.secrets.nix-access-tokens.path}";
|
|
|
|
### sops-nix
|
|
sops = {
|
|
defaultSopsFile = ../../../../secrets.yaml;
|
|
age.sshKeyPaths = ["/etc/ssh/ssh_host_ed25519_key"];
|
|
gnupg.sshKeyPaths = [];
|
|
secrets = {
|
|
"hashed-passwd" = {
|
|
neededForUsers = true;
|
|
};
|
|
"nix-access-tokens" = {
|
|
group = config.users.groups."nix-access-tokens".name;
|
|
mode = "0440";
|
|
};
|
|
};
|
|
};
|
|
}
|