❄ Personal NixOS Flake Manager
nixos home-manager go nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(rui): qol aliases

Fuwn fab60da8 d927f33a

+17 -1
+1 -1
flake.nix
··· 33 33 { 34 34 packages.default = pkgs.buildGoModule { 35 35 pname = "rui"; 36 - version = "2024-09-15"; 36 + version = "2024-09-16"; 37 37 src = pkgs.lib.cleanSource ./.; 38 38 vendorHash = "sha256-mN/QjzJ4eGfbW1H92cCKvC0wDhCR6IUes2HCZ5YBdPA="; 39 39
+16
rui.go
··· 30 30 Suggest: true, 31 31 Commands: []*cli.Command{ 32 32 { 33 + Name: "hs", 34 + Action: func(c *cli.Context) error { 35 + return c.App.Command("home").Command("switch").Run(c) 36 + }, 37 + Hidden: true, 38 + Description: "Alias for `home switch`", 39 + }, 40 + { 41 + Name: "osw", 42 + Action: func(c *cli.Context) error { 43 + return c.App.Command("os").Command("switch").Run(c) 44 + }, 45 + Hidden: true, 46 + Usage: "Alias for `os switch`", 47 + }, 48 + { 33 49 Name: "home", 34 50 Subcommands: []*cli.Command{ 35 51 {