From 40fc860b6e83cfe9b58c56177f5965cff6513ebe Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Tue, 29 Dec 2020 14:42:24 -0500 Subject: [PATCH] remove old profiles --- modules/baseline.nix | 2 +- profiles/desktop-gnome.nix | 10 ---------- profiles/desktop-sway.nix | 10 ---------- profiles/server.nix | 9 --------- 4 files changed, 1 insertion(+), 30 deletions(-) delete mode 100644 profiles/desktop-gnome.nix delete mode 100644 profiles/desktop-sway.nix delete mode 100644 profiles/server.nix diff --git a/modules/baseline.nix b/modules/baseline.nix index 3a46938..e95722f 100644 --- a/modules/baseline.nix +++ b/modules/baseline.nix @@ -40,7 +40,7 @@ "${pkgs.curl}/bin/curl --silent https://log.bck.me/nixos-report" "-H 'hostname: ${config.networking.hostName}'" "-H 'version: ${config.system.nixos.label}'" - "-H 'imports: ${lib.concatMapStringsSep " " toString (pkgs.callPackage /etc/nixos/configuration.nix { }).imports}'" + "-H 'sconfig: ${builtins.toJSON config.sconfig}'" ]; }; diff --git a/profiles/desktop-gnome.nix b/profiles/desktop-gnome.nix deleted file mode 100644 index e310bd8..0000000 --- a/profiles/desktop-gnome.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ ... }: -{ - imports = [ - ../modules/baseline.nix - ../modules/cli.nix - ../modules/gnome - ../modules/graphical.nix - ../modules/security-tools.nix - ]; -} diff --git a/profiles/desktop-sway.nix b/profiles/desktop-sway.nix deleted file mode 100644 index d3ddf01..0000000 --- a/profiles/desktop-sway.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ ... }: -{ - imports = [ - ../modules/baseline.nix - ../modules/cli.nix - ../modules/sway - ../modules/graphical.nix - ../modules/security-tools.nix - ]; -} diff --git a/profiles/server.nix b/profiles/server.nix deleted file mode 100644 index 90e3a79..0000000 --- a/profiles/server.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ ... }: -{ - imports = [ - ../modules/auto-update.nix - ../modules/baseline.nix - ../modules/cli.nix - ]; - services.openssh.enable = true; -}