style: fix indenting

This commit is contained in:
Emma Thorpe
2025-05-29 17:14:31 +01:00
parent 45c6a5d5f2
commit 1c7e7aa63a
2 changed files with 38 additions and 39 deletions
+7 -8
View File
@@ -13,16 +13,16 @@ in
wrapperFeatures.gtk = true; wrapperFeatures.gtk = true;
extraSessionCommands = '' extraSessionCommands = ''
# QT # QT
export QT_QPA_PLATFORM="wayland;xcb" export QT_QPA_PLATFORM="wayland;xcb"
export QT_QPA_PLATFORMTHEME=qt5ct export QT_QPA_PLATFORMTHEME=qt5ct
# SDL # SDL
export SDL_VIDEODRIVER=wayland export SDL_VIDEODRIVER=wayland
# Java # Java
export _JAVA_AWT_WM_NONREPARENTING=1 export _JAVA_AWT_WM_NONREPARENTING=1
# Misc # Misc
export CLUTTER_BACKEND=wayland export CLUTTER_BACKEND=wayland
export WINIT_UNIX_BACKEND=x11 export WINIT_UNIX_BACKEND=x11
export MOZ_ENABLE_WAYLAND=1 export MOZ_ENABLE_WAYLAND=1
''; '';
extraPackages = with pkgs; [ brightnessctl foot grim swayidle swaylock i3status-rust sway-launcher-desktop dunst pavucontrol ]; extraPackages = with pkgs; [ brightnessctl foot grim swayidle swaylock i3status-rust sway-launcher-desktop dunst pavucontrol ];
}; };
@@ -32,5 +32,4 @@ in
font-awesome font-awesome
]; ];
}; };
} }
+31 -31
View File
@@ -8,35 +8,35 @@
}; };
outputs = inputs @ { self, nixpkgs, home-manager, ... }: { outputs = inputs @ { self, nixpkgs, home-manager, ... }: {
nixosConfigurations.emmathorpe-mbp = nixpkgs.lib.nixosSystem { nixosConfigurations.emmathorpe-mbp = nixpkgs.lib.nixosSystem {
system = "aarch64-linux"; system = "aarch64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./system/machine/MBP-Asahi/configuration.nix ./system/machine/MBP-Asahi/configuration.nix
./emmathorpe/user.nix ./emmathorpe/user.nix
./emmathorpe/swaywm.nix ./emmathorpe/swaywm.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.emmathorpe = import ./emmathorpe/home.nix; home-manager.users.emmathorpe = import ./emmathorpe/home.nix;
} }
]; ];
}; };
nixosConfigurations.emmathorpe-x1c = nixpkgs.lib.nixosSystem { nixosConfigurations.emmathorpe-x1c = nixpkgs.lib.nixosSystem {
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs; }; specialArgs = { inherit inputs; };
modules = [ modules = [
./system/machine/X1/configuration.nix ./system/machine/X1/configuration.nix
./emmathorpe/user.nix ./emmathorpe/user.nix
./emmathorpe/swaywm.nix ./emmathorpe/swaywm.nix
home-manager.nixosModules.home-manager home-manager.nixosModules.home-manager
{ {
home-manager.useGlobalPkgs = true; home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.emmathorpe = import ./emmathorpe/home.nix; home-manager.users.emmathorpe = import ./emmathorpe/home.nix;
} }
]; ];
}; };
}; };
} }