Reformat Nix files
This commit is contained in:
parent
f39ddc8078
commit
fdc4148540
9 changed files with 87 additions and 82 deletions
|
|
@ -8,7 +8,7 @@
|
|||
../../configs/games.nix
|
||||
];
|
||||
|
||||
home-manager.users.froidmpa = {pkgs, config, ...}: {
|
||||
home-manager.users.froidmpa = { pkgs, config, ... }: {
|
||||
imports = [
|
||||
../../configs/home/full.nix
|
||||
];
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userName = "Paul-Henri Froidmont";
|
||||
userName = "Paul-Henri Froidmont";
|
||||
userEmail = "git.contact-57n2p@froidmont.org";
|
||||
signing = {
|
||||
key = "3AC6F170F01133CE393BCD94BE948AFD7E7873BE";
|
||||
|
|
@ -27,12 +27,12 @@
|
|||
};
|
||||
|
||||
hardware.opengl = {
|
||||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
extraPackages = with pkgs; [
|
||||
rocm-opencl-icd
|
||||
rocm-opencl-runtime
|
||||
];
|
||||
driSupport = true;
|
||||
driSupport32Bit = true;
|
||||
extraPackages = with pkgs; [
|
||||
rocm-opencl-icd
|
||||
rocm-opencl-runtime
|
||||
];
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
@ -64,7 +64,7 @@
|
|||
|
||||
time.timeZone = "Europe/Amsterdam";
|
||||
|
||||
services.xserver.videoDrivers = ["amdgpu"];
|
||||
services.xserver.videoDrivers = [ "amdgpu" ];
|
||||
services.sshd.enable = true;
|
||||
services.pcscd.enable = true;
|
||||
|
||||
|
|
|
|||
|
|
@ -7,18 +7,19 @@
|
|||
boot.extraModulePackages = [ ];
|
||||
|
||||
fileSystems."/" =
|
||||
{ device = "/dev/disk/by-uuid/f1e21558-88e6-413e-b56a-04e0b25e9ddd";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/f1e21558-88e6-413e-b56a-04e0b25e9ddd";
|
||||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/boot" =
|
||||
{ device = "/dev/disk/by-uuid/CCD1-0415";
|
||||
{
|
||||
device = "/dev/disk/by-uuid/CCD1-0415";
|
||||
fsType = "vfat";
|
||||
};
|
||||
|
||||
swapDevices =
|
||||
[ { device = "/dev/disk/by-uuid/f714775c-b5af-4c0c-8330-999b43db4794"; }
|
||||
];
|
||||
[{ device = "/dev/disk/by-uuid/f714775c-b5af-4c0c-8330-999b43db4794"; }];
|
||||
|
||||
nix.maxJobs = lib.mkDefault 16;
|
||||
# High-DPI console
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue