2020-02-20 03:10:43 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
{
|
|
|
|
|
imports = [
|
2020-09-30 23:15:51 +02:00
|
|
|
<home-manager/nixos>
|
2020-02-20 03:10:43 +01:00
|
|
|
./hardware-configuration.nix
|
2020-02-21 01:23:10 +01:00
|
|
|
../../configs/system.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-08 18:13:32 +01:00
|
|
|
../../configs/games.nix
|
2020-02-20 03:10:43 +01:00
|
|
|
];
|
|
|
|
|
|
2020-09-30 23:15:51 +02:00
|
|
|
home-manager.users.froidmpa = {pkgs, config, ...}: {
|
|
|
|
|
imports = [
|
2020-10-11 20:33:37 +02:00
|
|
|
../../configs/home/full.nix
|
2020-09-30 23:15:51 +02:00
|
|
|
];
|
2020-11-30 20:11:02 +01:00
|
|
|
|
|
|
|
|
programs.git = {
|
|
|
|
|
enable = true;
|
|
|
|
|
userName = "Paul-Henri Froidmont";
|
|
|
|
|
userEmail = "git.contact-57n2p@froidmont.org";
|
|
|
|
|
};
|
2020-09-30 23:15:51 +02:00
|
|
|
};
|
|
|
|
|
|
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-10-11 20:33:37 +02:00
|
|
|
|
2020-09-30 23:15:51 +02:00
|
|
|
system.stateVersion = "19.09";
|
2020-03-16 15:01:59 +01:00
|
|
|
}
|