Compare commits

..

No commits in common. "1df7c557a3ea3261c74f55f53b9f89116c1d7869" and "933f7e1ae0a3f0f82bb92bf9951c66d349274b23" have entirely different histories.

6 changed files with 24 additions and 76 deletions

View file

@ -1,7 +1,7 @@
{
description = "nix begat oizys";
outputs = inputs: (import ./lib inputs).oizysFlake;
outputs = inputs:(import ./lib inputs).oizysFlake;
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";

View file

@ -42,12 +42,8 @@ in {
networking.hostName = "othalan";
time.timeZone = "US/Central";
boot.loader = {
systemd-boot =
enabled
// {
consoleMode = "max";
};
boot.loader = {
systemd-boot ={ enable = true; consoleMode = "max";};
efi.canTouchEfiVariables = true;
};

View file

@ -130,15 +130,6 @@ dependencies = [
"strsim",
]
[[package]]
name = "clap_complete"
version = "4.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "885e4d7d5af40bfb99ae6f9433e292feac98d452dcb3ec3d25dfe7552b77da8c"
dependencies = [
"clap",
]
[[package]]
name = "clap_derive"
version = "4.5.4"
@ -381,7 +372,6 @@ name = "oizys"
version = "0.1.0"
dependencies = [
"clap",
"clap_complete",
"homedir",
"hostname",
]

View file

@ -7,6 +7,5 @@ edition = "2021"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
clap_complete = "4.5.1"
homedir = "0.2.1"
hostname = "0.3.1"

View file

@ -1,7 +1,4 @@
{
installShellFiles,
rustPlatform,
}:
{rustPlatform}:
rustPlatform.buildRustPackage {
pname = "oizys";
version = "unstable";
@ -9,11 +6,4 @@ rustPlatform.buildRustPackage {
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [installShellFiles];
postInstall = ''
installShellCompletion --cmd oizys \
--zsh <($out/bin/oizys --completions zsh)
'';
}

View file

@ -1,6 +1,5 @@
use clap::{CommandFactory, Parser, Subcommand};
use clap_complete::{generate, Generator, Shell};
use std::{env, io, path::PathBuf, process::Command};
use clap::{Parser, Subcommand};
use std::{env, path::PathBuf, process::Command};
#[derive(Parser)]
#[command(version, about, long_about = None)]
@ -21,12 +20,8 @@ struct Cli {
#[arg(long, global=true, action = clap::ArgAction::SetTrue)]
no_pinix: bool,
/// generate shell completion
#[arg(long, value_enum)]
completions: Option<Shell>,
#[command(subcommand)]
command: Option<Commands>,
command: Commands,
}
#[derive(Debug, Subcommand)]
@ -51,11 +46,7 @@ enum Commands {
Build {},
/// print nix flake output
Output {},
}
fn print_completions<G: Generator>(gen: G, cmd: &mut clap::Command) {
generate(gen, cmd, cmd.get_name().to_string(), &mut io::stdout());
Path {},
}
#[derive(Debug)]
@ -67,24 +58,19 @@ struct Oizys {
}
impl Oizys {
fn from(cli: &Cli) -> Oizys {
let host = cli
.host
.clone()
.unwrap_or(hostname::get().unwrap().to_string_lossy().to_string());
let flake = cli.flake.clone().unwrap_or(env::var("OIZYS_DIR").map_or(
fn new(host: Option<String>, flake: Option<PathBuf>, no_pinix: bool, verbose: u8) -> Oizys {
let hostname = hostname::get().unwrap().to_string_lossy().to_string();
let flake_path = env::var("OIZYS_DIR").map_or(
homedir::get_my_home().unwrap().unwrap().join("oizys"),
PathBuf::from,
));
);
Oizys {
host,
flake,
no_pinix: cli.no_pinix,
verbose: cli.verbose,
host: host.unwrap_or(hostname),
flake: flake.unwrap_or(flake_path),
no_pinix,
verbose,
}
}
fn output(self: &Oizys) -> String {
format!(
"{}#nixosConfigurations.{}.config.system.build.toplevel",
@ -160,14 +146,7 @@ impl Oizys {
fn main() {
let cli = Cli::parse();
let oizys = Oizys::from(&cli);
if let Some(completions) = cli.completions {
let mut cmd = Cli::command();
eprintln!("Generating completion for {completions:?}");
print_completions(completions, &mut cmd);
std::process::exit(0);
}
let oizys = Oizys::new(cli.host, cli.flake, cli.no_pinix, cli.verbose);
if oizys.verbose > 2 {
println!("-vv is max verbosity")
@ -176,18 +155,12 @@ fn main() {
println!("{:?}", oizys)
}
if let Some(command) = &cli.command {
match command {
Commands::Dry {} => oizys.build(true),
Commands::Build {} => oizys.build(false),
Commands::Output {} => println!("{}", oizys.output()),
Commands::Boot {} => oizys.nixos_rebuild("boot"),
Commands::Switch {} => oizys.nixos_rebuild("switch"),
Commands::Cache { name } => oizys.cache(name),
}
} else {
eprintln!("No subcommand provided..");
let mut cmd = Cli::command();
cmd.print_help().unwrap();
match &cli.command {
Commands::Dry {} => oizys.build(true),
Commands::Build {} => oizys.build(false),
Commands::Path {} => println!("{}", oizys.output()),
Commands::Boot {} => oizys.nixos_rebuild("boot"),
Commands::Switch {} => oizys.nixos_rebuild("switch"),
Commands::Cache { name } => oizys.cache(name),
}
}