nix in vscode and reformatting files

This commit is contained in:
CDaut 2024-04-18 10:15:25 +02:00
parent e1ac2a9a09
commit 361d0c8df8
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 18 additions and 13 deletions

View file

@ -7,7 +7,7 @@
];
# Bootloader.
boot.loader = {
boot.loader = {
efi.canTouchEfiVariables = true;
grub = {
enable = true;
@ -17,9 +17,9 @@
};
};
boot.initrd.kernelModules = ["amdgpu"];
services.hardware.bolt.enable = true;
boot.initrd.kernelModules = [ "amdgpu" ];
services.hardware.bolt.enable = true;
networking.hostName = "nixpad"; # Define your hostname.
@ -55,7 +55,7 @@
defaultSession = "none+i3";
setupCommands = ''
${pkgs.xorg.xrandr}/bin/xrandr --output eDP-1 --mode 3840x2160;
'';
'';
};
windowManager.i3 = {
@ -70,7 +70,7 @@
desktopManager.wallpaper.mode = "fill";
};
imports = [
imports = [
./programm_configs/yubikey-gpg.nix
];