55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: let
|
|
sshKeys = import ../../crypto/ssh-keys.nix;
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../common/base.nix
|
|
../../common/full-install.nix
|
|
../../common/allow-unfree.nix
|
|
|
|
../../common/locales/en.nix
|
|
../../common/locales/en-keymap.nix
|
|
|
|
../../common/hardware/intel-cpu.nix
|
|
../../common/hardware/nvidia-gpu.nix
|
|
../../common/hardware/ssd.nix
|
|
../../common/hardware/btrfs.nix
|
|
../../common/hardware/latest-kernel.nix
|
|
|
|
../../common/de/plasma6.nix
|
|
# ../../common/de/hyprland.nix
|
|
|
|
../../common/services/syncthing.nix
|
|
../../common/services/adguardhome.nix
|
|
../../common/programs/steam.nix
|
|
|
|
../../home/tasia-but-old-username/home.nix
|
|
];
|
|
|
|
networking = {
|
|
hostName = "theseus";
|
|
};
|
|
|
|
users.users.user.openssh.authorizedKeys.keys = [
|
|
sshKeys.tasia.yaseen
|
|
];
|
|
|
|
services.btrfs.autoScrub.fileSystems = lb.mkForce ["/" "/data"];
|
|
|
|
services.syncthing = {
|
|
dataDir = lib.mkForce "/home/user/Sync/Phone/";
|
|
configDir = lib.mkForce "/home/user/sync/configuration/";
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
#
|
|
];
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
system.stateVersion = "23.05";
|
|
}
|