Add more bash aliases
This commit is contained in:
parent
8f38c6714f
commit
b1ac0946b4
2 changed files with 7 additions and 2 deletions
|
@ -94,6 +94,11 @@
|
|||
nrs = "nixos-rebuild --upgrade switch";
|
||||
nrt = "nixos-rebuild test";
|
||||
nrb = "nixos-rebuild build";
|
||||
|
||||
# Rebuild everything
|
||||
rebuild-home = "home-manager switch -b backup --flake /etc/nixos//git";
|
||||
rebuild-host = "nixos-rebuild switch --flake /etc/nixos/git";
|
||||
rebuild-all = "rebuild-home && rebuild-host";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ config, lib, pkgs, modulesPath, desktop, username ... }: {
|
||||
imports = [
|
||||
../../common/services/powertop.nix # PowerTop
|
||||
../../common/modules/secureboot.nix # SecureBoot
|
||||
../../common/services/powertop.nix
|
||||
../../common/modules/secureboot.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "thunderbolt" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
|
||||
|
|
Loading…
Reference in a new issue