programs: Remove nonvm

This commit is contained in:
2021-08-31 18:25:24 +02:00
parent 3a4a16bf20
commit f3be63569d
4 changed files with 14 additions and 28 deletions

View File

@@ -1,24 +0,0 @@
{ pkgs, ... }:
let
network = import ../../network.nix;
in {
environment = {
systemPackages = with pkgs; [ gopass home-manager ];
sessionVariables = {
# Prevent us from having to always type it out
#NIXOS_CONFIG = "\${HOME}/Development/Personal/nixos-config/mikulinux.nix";
};
shells = [ pkgs.zsh ];
pathsToLink = [ "/share/zsh" ];
};
networking.hosts = {
"${network.miku}" = [ "miku.local" ];
"${network.nishimiya}" = [ "nishimiya.local" ];
"${network.ayame}" = [ "ayame.local" ];
"${network.tamaki}" = [ "tamaki.local" ];
};
}