From a0f6a61456209d43e733a22f87b24397ee7824df Mon Sep 17 00:00:00 2001 From: Swarsel Date: Mon, 23 Sep 2024 23:08:44 +0200 Subject: [PATCH] chore: remove redundant shellAliases on winters --- SwarselSystems.org | 12 +++++++++--- profiles/server/common/zfs.nix | 2 ++ profiles/server/winters/default.nix | 3 --- 3 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 profiles/server/common/zfs.nix diff --git a/SwarselSystems.org b/SwarselSystems.org index b1eab1a..3109772 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -2051,9 +2051,6 @@ My work machine. Built for more security, this is the gold standard of my config mpd = false; matrix = false; }; - shellAliases = { - nswitch = "cd /.dotfiles; sudo nixos-rebuild --flake .#$(hostname) switch; cd -;"; - }; }; } @@ -6583,6 +6580,15 @@ Also, the system state version is set here. No need to touch it. } #+end_src +**** zfs + +#+begin_src nix :tangle profiles/server/common/zfs.nix +{ pkgs, lib, config, ... }: +{ + +} +#+end_src + **** NGINX #+begin_src nix :tangle profiles/server/common/nginx.nix diff --git a/profiles/server/common/zfs.nix b/profiles/server/common/zfs.nix new file mode 100644 index 0000000..4885266 --- /dev/null +++ b/profiles/server/common/zfs.nix @@ -0,0 +1,2 @@ +{ pkgs, lib, config, ... }: +{ } diff --git a/profiles/server/winters/default.nix b/profiles/server/winters/default.nix index d9d18be..94e24a7 100644 --- a/profiles/server/winters/default.nix +++ b/profiles/server/winters/default.nix @@ -48,9 +48,6 @@ mpd = false; matrix = false; }; - shellAliases = { - nswitch = "cd /.dotfiles; sudo nixos-rebuild --flake .#$(hostname) switch; cd -;"; - }; }; }