switch back to nixfmt
This commit is contained in:
parent
6d30e0a9f5
commit
62032eab6d
37 changed files with 797 additions and 689 deletions
|
|
@ -2,16 +2,17 @@
|
|||
config,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
}:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
ddcutil
|
||||
mangohud
|
||||
(bottles.override {removeWarningPopup = true;})
|
||||
(bottles.override { removeWarningPopup = true; })
|
||||
];
|
||||
|
||||
# enable ddcutil
|
||||
users.users.sckova.extraGroups = ["i2c"];
|
||||
boot.extraModulePackages = [config.boot.kernelPackages.ddcci-driver];
|
||||
users.users.sckova.extraGroups = [ "i2c" ];
|
||||
boot.extraModulePackages = [ config.boot.kernelPackages.ddcci-driver ];
|
||||
boot.kernelModules = [
|
||||
"i2c-dev"
|
||||
"ddcci_backlight"
|
||||
|
|
@ -92,7 +93,7 @@
|
|||
|
||||
# enable hyper-v for guests
|
||||
virtualisation.hypervGuest.enable = true;
|
||||
boot.blacklistedKernelModules = ["hyperv_fb"];
|
||||
boot.blacklistedKernelModules = [ "hyperv_fb" ];
|
||||
|
||||
boot.binfmt.emulatedSystems = [
|
||||
"aarch64-linux"
|
||||
|
|
@ -100,5 +101,5 @@
|
|||
];
|
||||
|
||||
# i don't even remember what this does or why i added it
|
||||
systemd.tmpfiles.rules = ["L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware"];
|
||||
systemd.tmpfiles.rules = [ "L+ /var/lib/qemu/firmware - - - - ${pkgs.qemu}/share/qemu/firmware" ];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2,8 +2,9 @@
|
|||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
boot.kernelParams = ["appledrm.show_notch=1"];
|
||||
}:
|
||||
{
|
||||
boot.kernelParams = [ "appledrm.show_notch=1" ];
|
||||
|
||||
catppuccin = {
|
||||
accent = "lavender";
|
||||
|
|
@ -14,7 +15,7 @@
|
|||
ddcutil
|
||||
];
|
||||
|
||||
boot.extraModulePackages = [config.boot.kernelPackages.ddcci-driver];
|
||||
boot.extraModulePackages = [ config.boot.kernelPackages.ddcci-driver ];
|
||||
boot.kernelModules = [
|
||||
"i2c-dev"
|
||||
"ddcci_backlight"
|
||||
|
|
|
|||
|
|
@ -1,11 +1,12 @@
|
|||
{catppuccin, ...}: {
|
||||
{ catppuccin, ... }:
|
||||
{
|
||||
catppuccin = {
|
||||
accent = "green";
|
||||
flavor = "mocha";
|
||||
};
|
||||
|
||||
home-manager.users.sckova = {
|
||||
imports = [catppuccin.homeModules.catppuccin];
|
||||
imports = [ catppuccin.homeModules.catppuccin ];
|
||||
};
|
||||
|
||||
services.spice-vdagentd.enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue