mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
14 lines
453 B
Nix
14 lines
453 B
Nix
{ lib, config, ... }:
|
|
{
|
|
environment.shellAliases = lib.recursiveUpdate
|
|
{
|
|
npswitch = "cd ${config.swarselsystems.flakePath}; git pull; sudo nixos-rebuild --flake .#$(hostname) switch --impure; cd -;";
|
|
nswitch = "cd ${config.swarselsystems.flakePath}; sudo nixos-rebuild --flake .#$(hostname) switch --impure; cd -;";
|
|
}
|
|
config.swarselsystems.shellAliases;
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
"olm-3.2.16"
|
|
];
|
|
|
|
}
|