47 lines
789 B
Nix
47 lines
789 B
Nix
|
{
|
||
|
inputs,
|
||
|
outputs,
|
||
|
lib,
|
||
|
config,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
inputs.hardware.nixosModules.common-pc-ssd
|
||
|
inputs.disko.nixosModules.default
|
||
|
|
||
|
./hardware-configuration.nix
|
||
|
./disko.nix
|
||
|
|
||
|
../common/global
|
||
|
|
||
|
../common/optional/systemd-boot.nix
|
||
|
../common/optional/gnome-keyring.nix
|
||
|
../common/optional/docker.nix
|
||
|
];
|
||
|
|
||
|
nix.extraOptions = ''
|
||
|
download-speed = 4000
|
||
|
'';
|
||
|
|
||
|
nixpkgs = {
|
||
|
overlays = [
|
||
|
outputs.overlays.additions
|
||
|
outputs.overlays.modifications
|
||
|
outputs.overlays.unstable-packages
|
||
|
];
|
||
|
config = {
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
networking.hostName = "franz";
|
||
|
|
||
|
programs = {
|
||
|
dconf.enable = true;
|
||
|
};
|
||
|
|
||
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|