reduce whitespace

This commit is contained in:
Daylin Morgan 2024-04-23 12:45:48 -05:00
parent e3a718ed27
commit d13c4f77da
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -119,24 +119,14 @@ pub fn cache(self: *Oizys) !void {
pub fn run(self: *Oizys) !void { pub fn run(self: *Oizys) !void {
switch (self.cmd) { switch (self.cmd) {
.@"switch" => { .@"switch" => try self.runNixCmd(NixCmd.NixosRebuild, &.{ "switch", "--flake", self.flake }),
try self.runNixCmd(NixCmd.NixosRebuild, &.{ "switch", "--flake", self.flake }); .boot => try self.runNixCmd(NixCmd.NixosRebuild, &.{ "boot", "--flake", self.flake }),
}, .dry => try self.runNixCmd(NixCmd.Nix, &.{ "build", self.output, "--dry-run" }),
.boot => { .build => try self.runNixCmd(NixCmd.Nix, &.{ "build", self.output }),
try self.runNixCmd(NixCmd.NixosRebuild, &.{ "boot", "--flake", self.flake });
},
.dry => {
try self.runNixCmd(NixCmd.Nix, &.{ "build", self.output, "--dry-run" });
},
.build => {
try self.runNixCmd(NixCmd.Nix, &.{ "build", self.output });
},
.output => { .output => {
const stdout = std.io.getStdOut().writer(); const stdout = std.io.getStdOut().writer();
try stdout.print("{s}\n", .{self.output}); try stdout.print("{s}\n", .{self.output});
}, },
.cache => { .cache => try self.cache(),
try self.cache();
},
} }
} }