flake/nixos/profiles/common/core/default.nix

119 lines
3.1 KiB
Nix
Raw Normal View History

{
config,
lib,
2023-12-10 15:56:40 +00:00
inputs,
2023-12-25 14:27:42 +00:00
pkgs,
...
}: {
2023-10-16 08:26:06 +00:00
imports = [
2023-12-16 08:58:10 +00:00
./hardening
2023-12-27 17:28:28 +00:00
./networking
2023-11-17 05:38:25 +00:00
./nix
2023-12-10 15:56:40 +00:00
# Flake modules
inputs.disko.nixosModules.disko
inputs.home-manager.nixosModules.home-manager
inputs.impermanence.nixosModules.impermanence
inputs.lanzaboote.nixosModules.lanzaboote
inputs.nix-gaming.nixosModules.pipewireLowLatency
2024-02-27 07:38:36 +00:00
inputs.nur.nixosModules.nur
inputs.self.nixosModules.default
inputs.sops-nix.nixosModules.sops
2024-03-26 14:24:51 +00:00
inputs.nixos-sensible.nixosModules.default
2023-12-10 15:56:40 +00:00
];
2024-02-06 10:05:14 +00:00
nixpkgs.overlays = [
inputs.self.overlays.nautilus
inputs.self.overlays.prismlauncher
inputs.self.overlays.sway
2024-02-06 10:05:14 +00:00
];
2024-01-17 04:47:27 +00:00
### home-manager
2024-03-26 08:49:35 +00:00
home-manager.users.guanranwang = import ../../../../home;
2024-01-17 04:47:27 +00:00
2023-12-16 08:58:10 +00:00
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit inputs;}; # ??? isnt specialArgs imported by default ???
};
2023-10-16 08:26:06 +00:00
2023-12-16 08:58:10 +00:00
### Boot
boot.loader.efi.canTouchEfiVariables = true;
2024-01-08 10:53:08 +00:00
boot.loader.systemd-boot.enable = lib.mkDefault true; # mkDefault for Lanzaboote
2024-01-09 18:13:52 +00:00
boot.kernelPackages = lib.mkDefault pkgs.linuxPackages_zen; # mkDefault for server
2023-11-20 12:21:34 +00:00
2023-12-16 08:58:10 +00:00
### Default Programs
# In addition of https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/config/system-path.nix
2023-12-25 14:27:42 +00:00
environment.systemPackages = with pkgs; [
unzip
wget
tree
file
htop
lsof
ltrace
strace
2023-12-25 14:27:42 +00:00
dnsutils
pciutils
usbutils
];
2023-12-16 08:58:10 +00:00
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
settings.PasswordAuthentication = false;
};
2023-12-16 08:58:10 +00:00
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"}
'';
2023-09-19 00:17:43 +00:00
2024-01-17 04:47:27 +00:00
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;
2024-02-17 13:44:40 +00:00
openssh.authorizedKeys.keys = [
# same as git signing
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMmd/uqiBahzKcKMJ+gT3dkUIdrWQgudspsDchDlx1E/ guanran928@outlook.com"
];
2024-01-17 04:47:27 +00:00
};
programs.dconf.enable = true;
2024-01-17 04:47:27 +00:00
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";
};
};
};
2023-09-19 00:17:43 +00:00
}