35 lines
744 B
Nix
35 lines
744 B
Nix
{pkgs, ...}: let
|
|
sshKeys = import ../../crypto/ssh-keys.nix;
|
|
in {
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../common/base.nix
|
|
|
|
../../common/locales/fr.nix
|
|
../../common/locales/fr-keymap.nix
|
|
|
|
../../common/hardware/intel-cpu.nix
|
|
../../common/hardware/ssd.nix
|
|
../../common/hardware/btrfs.nix
|
|
|
|
../../common/de/plasma5.nix
|
|
|
|
../../common/services/syncthing.nix
|
|
|
|
../../home/46d1/home.nix
|
|
];
|
|
|
|
networking.hostName = "stuff";
|
|
|
|
users.users.user.openssh.authorizedKeys.keys = [
|
|
sshKeys.new-new-phoenix.tasia
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# Additional system packages here
|
|
];
|
|
|
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
|
system.stateVersion = "23.11";
|
|
}
|