style(tree-wide): apply linting
This commit is contained in:
parent
e3e8f88460
commit
d478e9009f
7 changed files with 4 additions and 10 deletions
|
@ -72,7 +72,7 @@
|
|||
snowfall.namespace = "pantheon";
|
||||
overlays = with inputs; [
|
||||
stable-diffusion-webui-nix.overlays.default
|
||||
(final: prev: {
|
||||
(_final: prev: {
|
||||
zjstatus = zjstatus.packages.${prev.system}.default;
|
||||
})
|
||||
];
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}:
|
||||
let
|
||||
mainMonitor = osConfig.desktop.mainMonitor;
|
||||
inherit (osConfig.desktop) mainMonitor;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf (osConfig.desktop.windowManager == "hyprland") {
|
||||
|
|
|
@ -3,7 +3,7 @@ let
|
|||
cfg = config.hardware.drives.btrfs;
|
||||
in
|
||||
{
|
||||
config = lib.mkIf (cfg.enable) (
|
||||
config = lib.mkIf cfg.enable (
|
||||
lib.mkMerge [
|
||||
{
|
||||
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
||||
|
@ -57,7 +57,7 @@ in
|
|||
};
|
||||
};
|
||||
}
|
||||
(lib.mkIf (cfg.ephemeralRoot) {
|
||||
(lib.mkIf cfg.ephemeralRoot {
|
||||
boot.initrd.postDeviceCommands = lib.mkAfter ''
|
||||
mkdir /btrfs_tmp
|
||||
mount /dev/root_vg/root /btrfs_tmp
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
inputs,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
let
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue