nixos-configs/hosts/nixos-desktop/configuration.nix

40 lines
871 B
Nix
Raw Normal View History

2020-02-20 03:10:43 +01:00
{ config, lib, pkgs, ... }:
{
imports = [
./hardware-configuration.nix
2020-02-21 01:23:10 +01:00
../../configs/system.nix
../../configs/user.nix
2020-07-27 21:47:56 +02:00
../../configs/network.nix
2020-03-09 18:22:42 +01:00
../../configs/virtualisation.nix
2020-03-16 15:01:59 +01:00
../../configs/dev.nix
../../configs/games.nix
2020-02-20 03:10:43 +01:00
];
fileSystems."/home/froidmpa/Nextcloud" = {
device = "/dev/disk/by-uuid/a4ba8b21-ea33-4487-b6f6-9bb7470a0acb";
fsType = "ext4";
};
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "nixos-desktop";
networking.interfaces.enp31s0.useDHCP = true;
console = {
font = "Lat2-Terminus16";
keyMap = "fr";
};
i18n = {
defaultLocale = "en_US.UTF-8";
};
time.timeZone = "Europe/Amsterdam";
services.xserver.videoDrivers = ["amdgpu"];
2020-03-16 15:01:59 +01:00
services.sshd.enable = true;
2020-02-20 03:10:43 +01:00
environment.systemPackages = with pkgs; [
];
2020-03-16 15:01:59 +01:00
}