switched formatter

This commit is contained in:
Christoph Hollizeck 2024-03-22 14:43:20 +00:00
parent e874f1de20
commit 102ee5aa76
5 changed files with 39 additions and 40 deletions

View file

@ -1,18 +1,17 @@
{
pkgs,
config,
...
{ pkgs
, config
, ...
}: {
imports = [./hardware.nix];
imports = [ ./hardware.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.blacklistedKernelModules = ["hyperv-fb"];
boot.blacklistedKernelModules = [ "hyperv-fb" ];
virtualisation.hypervGuest.videoMode = "1920x1080";
users.users.cholli = {
isNormalUser = true;
extraGroups = ["wheel"];
extraGroups = [ "wheel" ];
};
environment.systemPackages = with pkgs; [
@ -45,7 +44,7 @@
};
# Configure Home-Manager options from NixOS.
snowfallorg.user.cholli.home.config = {};
snowfallorg.user.cholli.home.config = { };
system.stateVersion = "23.11";
}